diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-09-02 23:21:00 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-09-02 23:21:00 +0100 |
commit | 0d231118f14f622ca025ac29db0b2cd0eeaec004 (patch) | |
tree | edb146c5fbd7e0874148b34e2ee2a1be21ad2f5b /src/player-controller.vala | |
parent | 0125f59bd6229cc8c98314b86795814ca5df6c42 (diff) | |
download | ayatana-indicator-sound-0d231118f14f622ca025ac29db0b2cd0eeaec004.tar.gz ayatana-indicator-sound-0d231118f14f622ca025ac29db0b2cd0eeaec004.tar.bz2 ayatana-indicator-sound-0d231118f14f622ca025ac29db0b2cd0eeaec004.zip |
tidied the transport backend
Diffstat (limited to 'src/player-controller.vala')
-rw-r--r-- | src/player-controller.vala | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/player-controller.vala b/src/player-controller.vala index 2ea9331..f5ec205 100644 --- a/src/player-controller.vala +++ b/src/player-controller.vala @@ -176,6 +176,8 @@ public class PlayerController : GLib.Object this.update_state(state.CONNECTED); TitleMenuitem title = this.custom_items[widget_order.TITLE] as TitleMenuitem; title.toggle_active_triangle(true); + TransportMenuitem transport = this.custom_items[widget_order.TRANSPORT] as TransportMenuitem; + transport.change_play_state(TransportMenuitem.state.PAUSED); } else{ this.update_state(state.DISCONNECTED); |