diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-09-05 12:51:47 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-09-05 12:51:47 +0100 |
commit | f177b1e0b8ab0413a6eced41de3710e38852319a (patch) | |
tree | 5dd1a3a6736f80c928510633f769da29d26ba89f /src/indicator-session.c | |
parent | 3f39e981fdbe934faf762de161645edd5eba753f (diff) | |
parent | a335b8e973287fa5cf60286bb6fd8f46fb66ad83 (diff) | |
download | ayatana-indicator-session-f177b1e0b8ab0413a6eced41de3710e38852319a.tar.gz ayatana-indicator-session-f177b1e0b8ab0413a6eced41de3710e38852319a.tar.bz2 ayatana-indicator-session-f177b1e0b8ab0413a6eced41de3710e38852319a.zip |
old icon now used when in greeter mode
Diffstat (limited to 'src/indicator-session.c')
-rw-r--r-- | src/indicator-session.c | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/src/indicator-session.c b/src/indicator-session.c index aacef49..2f1764f 100644 --- a/src/indicator-session.c +++ b/src/indicator-session.c @@ -70,6 +70,8 @@ struct _IndicatorSession { GDBusProxy * service_proxy; }; +static gboolean greeter_mode; + GType indicator_session_get_type (void); /* Indicator stuff */ @@ -164,10 +166,18 @@ indicator_session_init (IndicatorSession *self) self->users.label = GTK_LABEL (gtk_label_new (NULL)); + const gchar *greeter_var; + greeter_var = g_getenv("INDICATOR_GREETER_MODE"); + greeter_mode = g_strcmp0(greeter_var, "1") == 0; // devices self->devices.menu = GTK_MENU (dbusmenu_gtkmenu_new(INDICATOR_SESSION_DBUS_NAME, INDICATOR_SESSION_DBUS_OBJECT)); - self->devices.image = indicator_image_helper (ICON_DEFAULT); + if (greeter_mode){ + self->devices.image = indicator_image_helper (GREETER_ICON_DEFAULT); + } + else{ + self->devices.image = indicator_image_helper (ICON_DEFAULT); + } gtk_widget_show (GTK_WIDGET(self->devices.menu)); gtk_widget_show (GTK_WIDGET(self->devices.image)); @@ -498,7 +508,12 @@ receive_signal (GDBusProxy * proxy, } } else if (g_strcmp0(signal_name, "RestartRequired") == 0) { - self->devices.image = indicator_image_helper (ICON_RESTART); + if (greeter_mode == TRUE){ + self->devices.image = indicator_image_helper (GREETER_ICON_RESTART); + } + else{ + self->devices.image = indicator_image_helper (ICON_RESTART); + } } } |