diff options
author | Conor Curran <conor.curran@canonical.com> | 2012-01-13 13:04:08 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2012-01-13 13:04:08 +0000 |
commit | 1c6998b43f5bc0ea04b7285b2687b1b73393efd4 (patch) | |
tree | c14932a66b4e78ecf5a27e43bfec10e4d320fe82 | |
parent | 048fe88d783124358184248e33100caf9d6af82d (diff) | |
download | ayatana-indicator-sound-1c6998b43f5bc0ea04b7285b2687b1b73393efd4.tar.gz ayatana-indicator-sound-1c6998b43f5bc0ea04b7285b2687b1b73393efd4.tar.bz2 ayatana-indicator-sound-1c6998b43f5bc0ea04b7285b2687b1b73393efd4.zip |
revert to rhythmbox for the default player
-rw-r--r-- | data/com.canonical.indicators.sound.gschema.xml | 2 | ||||
-rw-r--r-- | src/player-controller.vala | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/data/com.canonical.indicators.sound.gschema.xml b/data/com.canonical.indicators.sound.gschema.xml index dc63bcb..f853367 100644 --- a/data/com.canonical.indicators.sound.gschema.xml +++ b/data/com.canonical.indicators.sound.gschema.xml @@ -11,7 +11,7 @@ </key> <key name="interested-media-players" type="as"> <summary>A list of applications which at some point have registered with the sound menu</summary> - <default>[ 'banshee' ]</default> + <default>[ 'rhythmbox' ]</default> <description> Each media player which abides by the MPRIS2 spec will automatically appear in the menu. This array should contain the desktop file names (minus .desktop suffix) of applications which diff --git a/src/player-controller.vala b/src/player-controller.vala index 04d0bf9..05996c6 100644 --- a/src/player-controller.vala +++ b/src/player-controller.vala @@ -178,11 +178,11 @@ public class PlayerController : GLib.Object playlists_menuitem.root_item.property_set_bool (MENUITEM_PROP_VISIBLE, false ); this.custom_items[widget_order.TRANSPORT].property_set_bool (MENUITEM_PROP_VISIBLE, - this.app_info.get_id() == "banshee.desktop"); + this.app_info.get_id() == "rhythmbox.desktop"); return; } metadata_menuitem.should_collapse (!this.custom_items[widget_order.METADATA].populated (MetadataMenuitem.relevant_attributes_for_ui()) ); - if (this.app_info.get_id() == "banshee.desktop"){ + if (this.app_info.get_id() == "rhythmbox.desktop"){ TransportMenuitem transport = this.custom_items[widget_order.TRANSPORT] as TransportMenuitem; transport.handle_cached_action(); } |