diff options
| author | Ken VanDine <ken.vandine@canonical.com> | 2012-03-21 16:11:25 -0400 |
|---|---|---|
| committer | Ken VanDine <ken.vandine@canonical.com> | 2012-03-21 16:11:25 -0400 |
| commit | bac2284172b59de051a5a8cb74609faa3e9174a7 (patch) | |
| tree | 3ef84c3ea33a0dbefa7ed24cc42b0f13931a04e2 /libdbusmenu-glib | |
| parent | 5995e81c8b6f794c22a6d1b3cf2a061868307de4 (diff) | |
| parent | 268ede0deda25d0d868abee3cce4b0f9e15eb9aa (diff) | |
| download | libdbusmenu-bac2284172b59de051a5a8cb74609faa3e9174a7.tar.gz libdbusmenu-bac2284172b59de051a5a8cb74609faa3e9174a7.tar.bz2 libdbusmenu-bac2284172b59de051a5a8cb74609faa3e9174a7.zip | |
* New upstream release.
* Fix theme change bug (LP: #953509)
* Don't request event responses if no one is listening
* Fix a warning on custom menu items without labels
Diffstat (limited to 'libdbusmenu-glib')
| -rw-r--r-- | libdbusmenu-glib/client.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libdbusmenu-glib/client.c b/libdbusmenu-glib/client.c index 01f063d..7d96db3 100644 --- a/libdbusmenu-glib/client.c +++ b/libdbusmenu-glib/client.c @@ -1540,6 +1540,18 @@ dbusmenu_client_send_event (DbusmenuClient * client, gint id, const gchar * name variant = g_variant_new_int32(0); } + /* Don't bother with the reply handling if nobody is watching... */ + if (!g_signal_has_handler_pending (client, signals[EVENT_RESULT], 0, TRUE)) { + g_dbus_proxy_call(priv->menuproxy, + "Event", + g_variant_new("(isvu)", id, name, variant, timestamp), + G_DBUS_CALL_FLAGS_NONE, + 1000, /* timeout */ + NULL, /* cancellable */ + NULL, NULL); + return; + } + event_data_t * edata = g_new0(event_data_t, 1); edata->client = client; g_object_ref(client); |
