summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-24 05:43:32 +0000
committerMatt Wilson <msw@redhat.com>1999-09-24 05:43:32 +0000
commit9412321697bc59106d1a31338b6c00aa86cbc893 (patch)
treed61bef1e597873cf347cd9a9cae578392144069c /gui.py
parent8047894e194d7a54c0e1bdf0bad4d4aa76d18282 (diff)
downloadanaconda-9412321697bc59106d1a31338b6c00aa86cbc893.tar.gz
anaconda-9412321697bc59106d1a31338b6c00aa86cbc893.tar.xz
anaconda-9412321697bc59106d1a31338b6c00aa86cbc893.zip
no gdk_flush.
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/gui.py b/gui.py
index 78bacdf33..7edb175ef 100755
--- a/gui.py
+++ b/gui.py
@@ -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):