diff options
| author | 2011-03-25 15:00:36 +0100 | |
|---|---|---|
| committer | 2011-03-25 15:00:36 +0100 | |
| commit | 0039f44fb98b40c85b40c43509a6f184be952d25 (patch) | |
| tree | 147b760eb31ad5601bf0d56d9bb702ca90cadb04 /airplay.py | |
| parent | 2016e1d2bbc671362452eacc19319a7d41857930 (diff) | |
| download | totem-plugin-airplay-0039f44fb98b40c85b40c43509a6f184be952d25.tar.gz totem-plugin-airplay-0039f44fb98b40c85b40c43509a6f184be952d25.tar.bz2 | |
Use correct signature for totem.action_seek_time() to fix seeking
Diffstat (limited to 'airplay.py')
| -rw-r--r-- | airplay.py | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -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): |
