diff options
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | libdbusmenu-glib/client.c | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 08ef7f7..a017ec4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +libdbusmenu (0.0-0ubuntu2~ppa2) UNRELEASED; urgency=low + + * Fix for default handlers. + + -- Ted Gould <ted@ubuntu.com> Wed, 26 Aug 2009 15:42:40 -0500 + libdbusmenu (0.0-0ubuntu2~ppa1) karmic; urgency=low * Show hide stuff diff --git a/libdbusmenu-glib/client.c b/libdbusmenu-glib/client.c index 0a80c6e..ffde8e3 100644 --- a/libdbusmenu-glib/client.c +++ b/libdbusmenu-glib/client.c @@ -550,6 +550,8 @@ menuitem_get_properties_new_cb (DBusGProxy * proxy, GHashTable * properties, GEr type = dbusmenu_menuitem_property_get(propdata->item, "type"); if (type != NULL) { newfunc = g_hash_table_lookup(priv->type_handlers, type); + } else { + newfunc = g_hash_table_lookup(priv->type_handlers, DBUSMENU_CLIENT_TYPES_DEFAULT); } if (newfunc != NULL) { |