diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-09-08 10:22:06 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-09-08 10:22:06 +0100 |
commit | e889dd7e4d0f5f3eb84d4eff9c080b0f23883999 (patch) | |
tree | 2cda66ed432779506cca6aede1ad0f0565023326 /src/indicator-session.c | |
parent | ba69c336b75e608f2fced7d63bd3e8f2722ef82f (diff) | |
parent | b85f29bbd848238a4b60fe2eccf3ead06c47b979 (diff) | |
download | ayatana-indicator-session-e889dd7e4d0f5f3eb84d4eff9c080b0f23883999.tar.gz ayatana-indicator-session-e889dd7e4d0f5f3eb84d4eff9c080b0f23883999.tar.bz2 ayatana-indicator-session-e889dd7e4d0f5f3eb84d4eff9c080b0f23883999.zip |
merge the apt handling fixes
Diffstat (limited to 'src/indicator-session.c')
-rw-r--r-- | src/indicator-session.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/indicator-session.c b/src/indicator-session.c index 2f1764f..f41c841 100644 --- a/src/indicator-session.c +++ b/src/indicator-session.c @@ -507,11 +507,12 @@ receive_signal (GDBusProxy * proxy, &self->users); } } - else if (g_strcmp0(signal_name, "RestartRequired") == 0) { + else if (g_strcmp0(signal_name, "RestartRequired") == 0) { if (greeter_mode == TRUE){ self->devices.image = indicator_image_helper (GREETER_ICON_RESTART); } else{ + g_debug ("reboot required"); self->devices.image = indicator_image_helper (ICON_RESTART); } } |