aboutsummaryrefslogtreecommitdiff
path: root/src/transport-menu-item.vala
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2011-02-09 11:25:39 +0000
committerConor Curran <conor.curran@canonical.com>2011-02-09 11:25:39 +0000
commitb3eb8aa450fa3dff6cbc324e85a441cb1321184b (patch)
treeb5ef433f38da351bc751a563116d3c3ab59a9fb2 /src/transport-menu-item.vala
parent1691ba2e034d688d58fba39fa88d8ef10bf67fe6 (diff)
parent5347a41ef9a04cc52c4f25bddfac9cb8660348a4 (diff)
downloadayatana-indicator-sound-b3eb8aa450fa3dff6cbc324e85a441cb1321184b.tar.gz
ayatana-indicator-sound-b3eb8aa450fa3dff6cbc324e85a441cb1321184b.tar.bz2
ayatana-indicator-sound-b3eb8aa450fa3dff6cbc324e85a441cb1321184b.zip
listen out for the playlistdetails changed signal and accommodate the race condition in gdbus for the active playlist property changed issue
Diffstat (limited to 'src/transport-menu-item.vala')
-rw-r--r--src/transport-menu-item.vala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/transport-menu-item.vala b/src/transport-menu-item.vala
index b8f55b5..b0009d9 100644
--- a/src/transport-menu-item.vala
+++ b/src/transport-menu-item.vala
@@ -42,8 +42,8 @@ public class TransportMenuitem : PlayerItem
public void change_play_state(state update)
{
- debug("UPDATING THE TRANSPORT DBUSMENUITEM PLAY STATE WITH VALUE %i",
- (int)update);
+ //debug("UPDATING THE TRANSPORT DBUSMENUITEM PLAY STATE WITH VALUE %i",
+ // (int)update);
int temp = (int)update;
this.property_set_int(MENUITEM_PLAY_STATE, temp);
}
@@ -60,7 +60,7 @@ public class TransportMenuitem : PlayerItem
}
int32 input = v.get_int32();
- debug("transport menu item -> handle_event with value %s", input.to_string());
+ //debug("transport menu item -> handle_event with value %s", input.to_string());
//debug("transport owner name = %s", this.owner.app_info.get_name());
this.owner.mpris_bridge.transport_update((action)input);
}