On Sat, 2007-12-08 at 08:40 -0600, [EMAIL PROTECTED] wrote: > Christopher> If I do something like > > Christopher> gobject.idle_add(foo) > Christopher> gobject.idle_add(must_run_after_foo) > > Christopher> Then am I guaranteed that these will indeed happen in the > Christopher> expected order? > > If the documentation doesn't state it, I don't think you can assume it. > Yuri showed one way to get the behavior you wanted.
I also know that the order is definitely not guaranteed if you use different priorities, so you need to be careful that a progress notifier (sent often) could be called after an end notifier (called once). -- [EMAIL PROTECTED] www.murrayc.com www.openismus.com _______________________________________________ pygtk mailing list [email protected] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
