Use low idle priority for dispatching, to fix initial vtimeline display

This commit is contained in:
René Stadler 2007-11-27 13:30:28 +02:00 committed by Stefan Sauer
parent b9156160e3
commit 6f371b8b3a

View file

@ -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):