diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-09-28 09:19:25 -0400 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2011-09-28 09:19:25 -0400 |
commit | d44c110df4e6702bb2441961c4d517f6885f5a3c (patch) | |
tree | 628e6d606000081a01cccc59e593ab914a6bff31 /src/indicator-session.c | |
parent | 18f3158453229388605760aa8e738a9adb65109b (diff) | |
parent | a3fd1aa6abf470016825dbb288565018cf834c12 (diff) | |
download | ayatana-indicator-session-d44c110df4e6702bb2441961c4d517f6885f5a3c.tar.gz ayatana-indicator-session-d44c110df4e6702bb2441961c4d517f6885f5a3c.tar.bz2 ayatana-indicator-session-d44c110df4e6702bb2441961c4d517f6885f5a3c.zip |
* New upstream release.
* Fix convert file key naming (LP: #847807)
* Use environment variable to get seat path (LP: #856455)
* Fix abort when using ConsoleKit fallback (LP: #740382)
* Update session icon instead of creating a new one (LP: #854292)
* Update to latest Launchpad translations
Diffstat (limited to 'src/indicator-session.c')
-rw-r--r-- | src/indicator-session.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/indicator-session.c b/src/indicator-session.c index 833d19b..9510807 100644 --- a/src/indicator-session.c +++ b/src/indicator-session.c @@ -509,11 +509,11 @@ receive_signal (GDBusProxy * proxy, } else if (g_strcmp0(signal_name, "RestartRequired") == 0) { if (greeter_mode == TRUE){ - self->devices.image = indicator_image_helper (GREETER_ICON_RESTART); + indicator_image_helper_update(self->devices.image, GREETER_ICON_RESTART); } else{ g_debug ("reboot required"); - self->devices.image = indicator_image_helper (ICON_RESTART); + indicator_image_helper_update(self->devices.image, ICON_RESTART); } } } |