diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-08-12 13:21:57 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-08-12 13:21:57 +0100 |
commit | 72ffb2c3c096cf0e7ece12c93bfeff5b651fed13 (patch) | |
tree | 908307c96ede45783599351124f03a464fb844fc /src/scrub-menu-item.vala | |
parent | 44d47d0c4d334ba3cd2b8d9bd34893ba8c3dedf9 (diff) | |
download | ayatana-indicator-sound-72ffb2c3c096cf0e7ece12c93bfeff5b651fed13.tar.gz ayatana-indicator-sound-72ffb2c3c096cf0e7ece12c93bfeff5b651fed13.tar.bz2 ayatana-indicator-sound-72ffb2c3c096cf0e7ece12c93bfeff5b651fed13.zip |
abstracted the mpris handling to accomodate the messy integration issues
Diffstat (limited to 'src/scrub-menu-item.vala')
-rw-r--r-- | src/scrub-menu-item.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scrub-menu-item.vala b/src/scrub-menu-item.vala index e220612..7368a0c 100644 --- a/src/scrub-menu-item.vala +++ b/src/scrub-menu-item.vala @@ -32,7 +32,7 @@ public class ScrubMenuitem : PlayerItem public override void handle_event(string name, GLib.Value input_value, uint timestamp) { debug("handle_event for owner %s with value: %f", this.owner.name, input_value.get_double()); - this.owner.set_track_position(input_value.get_double()); + this.owner.mpris_bridge.set_track_position(input_value.get_double()); } public void update_position(int32 new_position) |