aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog6
-rw-r--r--src/indicator-session.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 7ffe071..66bd6c8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+indicator-session (0.1.6-0ubuntu1~ppa3) karmic; urgency=low
+
+ * Default icon too!
+
+ -- Ted Gould <ted@ubuntu.com> Tue, 06 Oct 2009 14:40:03 -0400
+
indicator-session (0.1.6-0ubuntu1~ppa2) karmic; urgency=low
* Stupid, stupid, icon stuff
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;
}