diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-24 05:43:32 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-24 05:43:32 +0000 |
commit | 9412321697bc59106d1a31338b6c00aa86cbc893 (patch) | |
tree | d61bef1e597873cf347cd9a9cae578392144069c | |
parent | 8047894e194d7a54c0e1bdf0bad4d4aa76d18282 (diff) | |
download | anaconda-9412321697bc59106d1a31338b6c00aa86cbc893.tar.gz anaconda-9412321697bc59106d1a31338b6c00aa86cbc893.tar.xz anaconda-9412321697bc59106d1a31338b6c00aa86cbc893.zip |
no gdk_flush.
-rwxr-xr-x | gui.py | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -57,7 +57,6 @@ class WaitWindow: frame.add (box) self.window.add (frame) self.window.show_all () - gdk_flush () thread = currentThread () print thread.getName () if thread.getName () == "gtk_main": @@ -94,13 +93,11 @@ class ProgressWindow: frame.add (box) self.window.add (frame) self.window.show_all () - gdk_flush () threads_leave () def set (self, amount): threads_enter () self.progress.update (float (amount) / self.total) - gdk_flush () threads_leave () def pop(self): |