diff options
author | Ted Gould <ted@gould.cx> | 2010-08-12 11:40:24 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-08-12 11:40:24 -0500 |
commit | 7c5140a0f5130a6b3e993381a0ff31e156d60909 (patch) | |
tree | d9c46aebff9c2031bec7fc11ad8f688467d51123 /src/indicator-session.c | |
parent | 3b359094448cfd02f2c571041bb0ce5a74e1249e (diff) | |
parent | 5988e5b24d22184ce32beb9a16644f28fe8d4841 (diff) | |
download | ayatana-indicator-session-7c5140a0f5130a6b3e993381a0ff31e156d60909.tar.gz ayatana-indicator-session-7c5140a0f5130a6b3e993381a0ff31e156d60909.tar.bz2 ayatana-indicator-session-7c5140a0f5130a6b3e993381a0ff31e156d60909.zip |
* New upstream release.
* Fix to lock screen so that the menu item is always to lock
the screen.
* Fix capitalization of complete update message.
Diffstat (limited to 'src/indicator-session.c')
-rw-r--r-- | src/indicator-session.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/indicator-session.c b/src/indicator-session.c index dc23139..a1f1667 100644 --- a/src/indicator-session.c +++ b/src/indicator-session.c @@ -122,6 +122,9 @@ indicator_session_init (IndicatorSession *self) dbusmenu_client_add_type_handler(client, USER_ITEM_TYPE, new_user_item); dbusmenu_client_add_type_handler(client, RESTART_ITEM_TYPE, build_restart_item); + GtkAccelGroup * agroup = gtk_accel_group_new(); + dbusmenu_gtkclient_set_accel_group(DBUSMENU_GTKCLIENT(client), agroup); + DBusGConnection * session_bus = dbus_g_bus_get(DBUS_BUS_SESSION, NULL); self->service_proxy = dbus_g_proxy_new_for_name(session_bus, INDICATOR_SESSION_DBUS_NAME, |