From 6f371b8b3adc3168f8077a29419ec68d50fbd877 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Stadler?= Date: Tue, 27 Nov 2007 13:30:28 +0200 Subject: [PATCH] Use low idle priority for dispatching, to fix initial vtimeline display --- debug-viewer/GstDebugViewer/Common/Data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug-viewer/GstDebugViewer/Common/Data.py b/debug-viewer/GstDebugViewer/Common/Data.py index 70a3cb44ec..92b3f5afb1 100644 --- a/debug-viewer/GstDebugViewer/Common/Data.py +++ b/debug-viewer/GstDebugViewer/Common/Data.py @@ -54,7 +54,7 @@ class GSourceDispatcher (Dispatcher): if self.source_id is not None: gobject.source_remove (self.source_id) - self.source_id = gobject.idle_add (iterator.next) + self.source_id = gobject.idle_add (iterator.next, priority = gobject.PRIORITY_LOW) def cancel (self):