diff options
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | src/status-service.c | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 65ec7c0..4213c70 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +indicator-session (0.1.3-0ubuntu2~ppa1~design2) UNRELEASED; urgency=low + + * Fixing more labels + + -- Ted Gould <ted@ubuntu.com> Wed, 16 Sep 2009 10:07:06 -0500 + indicator-session (0.1.3-0ubuntu2~ppa1~design1) karmic; urgency=low * Fixes for the design team. diff --git a/src/status-service.c b/src/status-service.c index 8ce7962..c7ef20b 100644 --- a/src/status-service.c +++ b/src/status-service.c @@ -95,8 +95,6 @@ status_update (void) { if (global_status != oldglobal) { g_debug("Global status changed to: %s", _(status_strings[global_status])); - /* Set the status name on the menu item */ - dbusmenu_menuitem_property_set(status_menuitem, DBUSMENU_MENUITEM_PROP_LABEL, _(status_strings[global_status])); /* Configure the icon on the panel */ status_service_dbus_set_status(dbus_interface, status_icons[global_status]); @@ -191,7 +189,7 @@ build_menu (gpointer data) build_user_item(root); status_menuitem = dbusmenu_menuitem_new(); - dbusmenu_menuitem_property_set(status_menuitem, DBUSMENU_MENUITEM_PROP_LABEL, _(status_strings[global_status])); + dbusmenu_menuitem_property_set(status_menuitem, DBUSMENU_MENUITEM_PROP_LABEL, _("Set Status")); dbusmenu_menuitem_child_append(root, status_menuitem); StatusProviderStatus i; |