[pitivi] Ruler._doSeek(): Forward the on_idle argument



commit acc12096546b26ac14169b26bd79294de6012d1b
Author: Edward Hervey <bilboed bilboed com>
Date:   Wed May 20 09:57:59 2009 +0200

    Ruler._doSeek(): Forward the on_idle argument
    
    This should get rid of various deadlocks due to reentrant seeks on
    the pipeline.
---
 pitivi/ui/ruler.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/pitivi/ui/ruler.py b/pitivi/ui/ruler.py
index a06bcf8..2dd872a 100644
--- a/pitivi/ui/ruler.py
+++ b/pitivi/ui/ruler.py
@@ -181,7 +181,7 @@ class ScaleRuler(gtk.Layout, Zoomable, Loggable):
         return False
 
     def _doSeek(self, value, format=gst.FORMAT_TIME, on_idle=False):
-        self.seeker.seek(value, format)
+        self.seeker.seek(value, format, on_idle)
 
 ## Drawing methods
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]