diff options
author | Ted Gould <ted@gould.cx> | 2011-09-27 17:05:28 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-09-27 17:05:28 -0500 |
commit | d29ab0ecb52e11dd09c478d73109176b599a885a (patch) | |
tree | 6b4c3c6e4b55f5ee171a6cfc708e3724431cd4ef /src/indicator-session.c | |
parent | 1e3f1b724bfbb1283b482ddd11db1ee417e4eeb3 (diff) | |
parent | af086761e7447cc106191dd9802c774666a4b5a0 (diff) | |
download | ayatana-indicator-session-d29ab0ecb52e11dd09c478d73109176b599a885a.tar.gz ayatana-indicator-session-d29ab0ecb52e11dd09c478d73109176b599a885a.tar.bz2 ayatana-indicator-session-d29ab0ecb52e11dd09c478d73109176b599a885a.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); } } } |