diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-01-11 14:42:27 -0600 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2011-01-11 14:42:27 -0600 |
commit | eaa79e5722aa6370edc100c004b703135b285a96 (patch) | |
tree | f760d4a09f9244915293ada99f44cc79a616a241 /src/title-menu-item.vala | |
parent | 370d15ea33974c3a8339965263980b21403f21ca (diff) | |
parent | 13d392dab3f0fcba861bd6607ce17d68990b9228 (diff) | |
download | ayatana-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.vala | 3 |
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); } |