aboutsummaryrefslogtreecommitdiff
path: root/src/title-menu-item.vala
diff options
context:
space:
mode:
authorKen VanDine <ken.vandine@canonical.com>2011-01-11 14:42:27 -0600
committerKen VanDine <ken.vandine@canonical.com>2011-01-11 14:42:27 -0600
commiteaa79e5722aa6370edc100c004b703135b285a96 (patch)
treef760d4a09f9244915293ada99f44cc79a616a241 /src/title-menu-item.vala
parent370d15ea33974c3a8339965263980b21403f21ca (diff)
parent13d392dab3f0fcba861bd6607ce17d68990b9228 (diff)
downloadayatana-indicator-sound-eaa79e5722aa6370edc100c004b703135b285a96.tar.gz
ayatana-indicator-sound-eaa79e5722aa6370edc100c004b703135b285a96.tar.bz2
ayatana-indicator-sound-eaa79e5722aa6370edc100c004b703135b285a96.zip
* New upstream release.
- unity-panel-service crashed with SIGSEGV in cairo_translate (LP: #683184) - Add MPRIS Playlist support (LP: #692644) - only first word of application name is shown (LP: #695385) - The players list should be customizable (LP: #685725) - gio-unix-2.0 checks (LP: #694828) - Desktop file loading should not manually use full path (LP: #693824)
Diffstat (limited to 'src/title-menu-item.vala')
-rw-r--r--src/title-menu-item.vala3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/title-menu-item.vala b/src/title-menu-item.vala
index d782e84..0b99ae3 100644
--- a/src/title-menu-item.vala
+++ b/src/title-menu-item.vala
@@ -26,8 +26,7 @@ public class TitleMenuitem : PlayerItem
public TitleMenuitem(PlayerController parent)
{
Object(item_type: MENUITEM_TYPE, owner: parent);
- this.property_set(MENUITEM_NAME, parent.name);
- debug("title init - icon name = %s", parent.icon_name);
+ this.property_set(MENUITEM_NAME, parent.app_info.get_name());
this.property_set(MENUITEM_ICON, parent.icon_name);
this.property_set_bool(MENUITEM_RUNNING, false);
}