summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2011-03-25 15:00:36 +0100
committerGravatar Martin Szulecki2011-03-25 15:00:36 +0100
commit0039f44fb98b40c85b40c43509a6f184be952d25 (patch)
tree147b760eb31ad5601bf0d56d9bb702ca90cadb04
parent2016e1d2bbc671362452eacc19319a7d41857930 (diff)
downloadtotem-plugin-airplay-0039f44fb98b40c85b40c43509a6f184be952d25.tar.gz
totem-plugin-airplay-0039f44fb98b40c85b40c43509a6f184be952d25.tar.bz2
Use correct signature for totem.action_seek_time() to fix seeking
-rw-r--r--airplay.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/airplay.py b/airplay.py
index 0ffa75e..3e6266b 100644
--- a/airplay.py
+++ b/airplay.py
@@ -57,7 +57,7 @@ class AirPlayTotemPlayer(AirPlayService):
# this must seek to a certain time
def set_scrub(self, position):
if self.totem.is_seekable():
- gobject.idle_add(self.totem.action_seek_time, int(float(position) * 1000))
+ gobject.idle_add(self.totem.action_seek_time, int(float(position) * 1000), False)
# this only sets the location and start position, it does not yet start to play
def play(self, location, position):