diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-23 02:54:53 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-23 02:54:53 +0000 |
commit | 9b8af2921ef94698ae0f40535c599a02cf1515a5 (patch) | |
tree | 7fc94ca1925c5955e3fdfee03654749050eae93a /gui.py | |
parent | 861eba4c728df31ae0074aadfe6e3d2f1d216286 (diff) | |
download | anaconda-9b8af2921ef94698ae0f40535c599a02cf1515a5.tar.gz anaconda-9b8af2921ef94698ae0f40535c599a02cf1515a5.tar.xz anaconda-9b8af2921ef94698ae0f40535c599a02cf1515a5.zip |
FIX DEADLOCK...
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -58,8 +58,10 @@ class WaitWindow: self.window.add (frame) self.window.show_all () gdk_flush () - while events_pending (): - mainiteration (FALSE) + thread = currentThread () + if thread.getName () == "gtk_main": + while events_pending (): + mainiteration (FALSE) threads_leave () def pop(self): |