summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorpnfisher <pnfisher>1999-08-04 01:39:30 +0000
committerpnfisher <pnfisher>1999-08-04 01:39:30 +0000
commite63a7277558a2e8a1c084595b1c22610940358b0 (patch)
tree79ab3c4b0cd30d665eeb2bb2c5b312c38f878e66 /gui.py
parentb618d8cf0602f1298bda78f9308fe2d01958facf (diff)
downloadanaconda-e63a7277558a2e8a1c084595b1c22610940358b0.tar.gz
anaconda-e63a7277558a2e8a1c084595b1c22610940358b0.tar.xz
anaconda-e63a7277558a2e8a1c084595b1c22610940358b0.zip
msw is stupid. wrap gtk_main with gdk_threads_{enter/leave}.
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/gui.py b/gui.py
index 948c44320..a4b247955 100755
--- a/gui.py
+++ b/gui.py
@@ -149,7 +149,9 @@ class WaitWindow:
class GtkMainThread:
def run (self):
+ threads_enter ()
mainloop ()
+ threads_leave ()
class InstallInterface: