summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAles Kozumplik <akozumpl@redhat.com>2010-02-22 11:16:55 +0100
committerAles Kozumplik <akozumpl@redhat.com>2010-03-05 11:26:59 +0100
commit56238f1ab9ab3a432fba329ecd7eb9aa225fa2a9 (patch)
treeaba1e8ebe37d25f94dc50d879f07d302f2401815
parenta80ee40fa8dbc90ec222fe563f62126aa8069b7a (diff)
downloadanaconda-56238f1ab9ab3a432fba329ecd7eb9aa225fa2a9.tar.gz
anaconda-56238f1ab9ab3a432fba329ecd7eb9aa225fa2a9.tar.xz
anaconda-56238f1ab9ab3a432fba329ecd7eb9aa225fa2a9.zip
metacity, fix a displaying problem with WaitWindow and ProgressWindow (#520146)
-rwxr-xr-xgui.py13
1 files changed, 9 insertions, 4 deletions
diff --git a/gui.py b/gui.py
index 634ac1cb0..ea816a48c 100755
--- a/gui.py
+++ b/gui.py
@@ -395,7 +395,6 @@ class WaitWindow:
self.window.set_transient_for(parent)
else:
self.window = gtk.Window()
-
self.window.set_modal(True)
self.window.set_type_hint (gtk.gdk.WINDOW_TYPE_HINT_DIALOG)
self.window.set_title(title)
@@ -406,8 +405,13 @@ class WaitWindow:
box.add(label)
box.set_shadow_type(gtk.SHADOW_NONE)
self.window.add(box)
+ box.show_all()
addFrame(self.window)
- self.window.show_all()
+ # Displaying windows should not be done outside of the gtk
+ # mainloop. With metacity this bites us and we have to do
+ # window.show_now() AND refresh() to correctly display the window and
+ # its contents:
+ self.window.show_now()
rootPushBusyCursor()
self.refresh()
@@ -445,10 +449,11 @@ class ProgressWindow:
self.updpct = updpct
self.progress = gtk.ProgressBar ()
box.pack_start (self.progress, True)
+ box.show_all()
self.window.add(box)
-
addFrame(self.window)
- self.window.show_all ()
+ # see comment at WaitWindow.__init__():
+ self.window.show_now ()
rootPushBusyCursor()
self.refresh()