From 0039f44fb98b40c85b40c43509a6f184be952d25 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Fri, 25 Mar 2011 15:00:36 +0100 Subject: Use correct signature for totem.action_seek_time() to fix seeking --- airplay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'airplay.py') 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): -- cgit v1.1-32-gdbae