diff options
author | Ted Gould <ted@canonical.com> | 2009-10-06 14:38:51 -0400 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-10-06 14:38:51 -0400 |
commit | 5763f8c1c49af3c2435ee8b43fc4625eceb8b13f (patch) | |
tree | d7096f6694fdf833e3e01758574ca9d13792dfbb /src/indicator-session.c | |
parent | 51ecaad4b544f3ba4b757c7ebc31d5c10b8b3689 (diff) | |
download | ayatana-indicator-session-5763f8c1c49af3c2435ee8b43fc4625eceb8b13f.tar.gz ayatana-indicator-session-5763f8c1c49af3c2435ee8b43fc4625eceb8b13f.tar.bz2 ayatana-indicator-session-5763f8c1c49af3c2435ee8b43fc4625eceb8b13f.zip |
Setting the default icon as well.
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 a4bb5e1..ef80033 100644 --- a/src/indicator-session.c +++ b/src/indicator-session.c @@ -76,8 +76,8 @@ get_label (void) GtkImage * get_icon (void) { - g_debug("Changing status icon: '%s'", "user-offline"); - status_image = GTK_IMAGE(gtk_image_new_from_icon_name("user-offline", GTK_ICON_SIZE_MENU)); + g_debug("Changing status icon: '%s'", "system-shutdown"); + status_image = GTK_IMAGE(gtk_image_new_from_icon_name("system-shutdown", GTK_ICON_SIZE_MENU)); gtk_widget_show(GTK_WIDGET(status_image)); return status_image; } |