diff options
author | Ted Gould <ted@canonical.com> | 2009-08-26 15:42:52 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-08-26 15:42:52 -0500 |
commit | 3d98f4ab0a61880ed16a0dc4e87480ae58d2f85d (patch) | |
tree | 00b2650ab96ec9b61dde22bab3df11cf91f1c7c4 /libdbusmenu-glib | |
parent | b5b68536d005699250c608f2cc5e5ea51e4f74c3 (diff) | |
parent | 9afd4dc68692b573582c3bd57489f9b5a541eb3a (diff) | |
download | libdbusmenu-3d98f4ab0a61880ed16a0dc4e87480ae58d2f85d.tar.gz libdbusmenu-3d98f4ab0a61880ed16a0dc4e87480ae58d2f85d.tar.bz2 libdbusmenu-3d98f4ab0a61880ed16a0dc4e87480ae58d2f85d.zip |
Fix for default handlers.
Diffstat (limited to 'libdbusmenu-glib')
-rw-r--r-- | libdbusmenu-glib/client.c | 2 |
1 files changed, 2 insertions, 0 deletions
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) { |