summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-03-28 21:31:13 +0000
committerJeremy Katz <katzj@redhat.com>2007-03-28 21:31:13 +0000
commit81893c5d1cc3943dcece7ab9a4a551f3ec5c308f (patch)
treee83315b1d6b7c236e340e8b0e6e3cf1f96b315d5 /gui.py
parent0316cb48ef2fd7d71249bd5de317d265e588f947 (diff)
downloadanaconda-81893c5d1cc3943dcece7ab9a4a551f3ec5c308f.tar.gz
anaconda-81893c5d1cc3943dcece7ab9a4a551f3ec5c308f.tar.xz
anaconda-81893c5d1cc3943dcece7ab9a4a551f3ec5c308f.zip
2007-03-28 Jeremy Katz <katzj@redhat.com>
* livecd.py (LiveCDCopyBackend._doFilesystemMangling): Call refresh method so that we don't end up with a hung looking UI during filesystem resizing, etc (#224213) * gui.py (WaitWindow.refresh): Add refresh method * cmdline.py (WaitWindow.refresh): Likewise. * text.py (WaitWindow.refresh): Likewise.
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/gui.py b/gui.py
index ce0e8e42e..ea15cecb6 100755
--- a/gui.py
+++ b/gui.py
@@ -503,6 +503,9 @@ class WaitWindow:
addFrame(self.window, showtitle = 0)
self.window.show_all()
rootPushBusyCursor()
+
+ def refresh(self):
+ processEvents()
def pop(self):
self.window.destroy()