summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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):
57 # this must seek to a certain time 57 # this must seek to a certain time
58 def set_scrub(self, position): 58 def set_scrub(self, position):
59 if self.totem.is_seekable(): 59 if self.totem.is_seekable():
60 gobject.idle_add(self.totem.action_seek_time, int(float(position) * 1000)) 60 gobject.idle_add(self.totem.action_seek_time, int(float(position) * 1000), False)
61 61
62 # this only sets the location and start position, it does not yet start to play 62 # this only sets the location and start position, it does not yet start to play
63 def play(self, location, position): 63 def play(self, location, position):