diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-08-10 16:34:26 -0400 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2011-08-10 16:34:26 -0400 |
commit | ae81953d3491fcadae3b05c9535c6605a50a9467 (patch) | |
tree | cb8a8cbf0ad10b45c3457852acd02790bcd7f2c2 /src/indicator-session.c | |
parent | f0c187f8dd55d8b831892ce30937aed2b737c5f8 (diff) | |
parent | b5eb255fae2158fde84def56b46fa6c5424f5b84 (diff) | |
download | ayatana-indicator-session-ae81953d3491fcadae3b05c9535c6605a50a9467.tar.gz ayatana-indicator-session-ae81953d3491fcadae3b05c9535c6605a50a9467.tar.bz2 ayatana-indicator-session-ae81953d3491fcadae3b05c9535c6605a50a9467.zip |
* New upstream release.
- restart is missing from SessionMenu (LP: #815077)
- Don't allow starting programs via the greeter indicators (LP: #811853)
- Printer menu item should launch system-config-printer (LP: #818602)
- gudev integration
- apt restart required awareness
* debian/control
- Added build depends on libgudev-1.0-dev
Diffstat (limited to 'src/indicator-session.c')
-rw-r--r-- | src/indicator-session.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/indicator-session.c b/src/indicator-session.c index d7155f6..bfe0b75 100644 --- a/src/indicator-session.c +++ b/src/indicator-session.c @@ -491,6 +491,7 @@ receive_signal (GDBusProxy * proxy, g_signal_emit_by_name ((gpointer)self, "entry-added", &self->users); + } else{ g_signal_emit_by_name ((gpointer)self, @@ -498,6 +499,10 @@ receive_signal (GDBusProxy * proxy, &self->users); } } + else if (g_strcmp0(signal_name, "RebootRequired") == 0) { + // TODO waiting on design to give me a name. + self->devices.image = indicator_image_helper (ICON_DEFAULT); + } } |