summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-01-05 14:04:17 -0500
committerChris Lumens <clumens@redhat.com>2009-01-05 14:04:17 -0500
commit2734cf8a8077f7108bb65b3724af075825d6eb44 (patch)
tree395ce39d685679d029086458e215e96ce544fc8b
parentd9e16f3e52f17fa845793e33e6ab9124d2d14a0d (diff)
downloadanaconda-2734cf8a8077f7108bb65b3724af075825d6eb44.tar.gz
anaconda-2734cf8a8077f7108bb65b3724af075825d6eb44.tar.xz
anaconda-2734cf8a8077f7108bb65b3724af075825d6eb44.zip
Show the header in certain non-lowres cases (#478765, alsadi AT ojuba.org).
-rwxr-xr-xgui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui.py b/gui.py
index 2fcc9e987..b2e691605 100755
--- a/gui.py
+++ b/gui.py
@@ -1514,9 +1514,9 @@ class InstallControlWindow:
dither = False, image = i)
if p is None:
print(_("Unable to load title bar"))
- if (gtk.gdk.screen_height() < 600) or \
- (gtk.gdk.screen_height() <= 675 and not runningMiniWm()):
+ if gtk.gdk.screen_height() < 600:
i.hide()
+ if gtk.gdk.screen_height() <= 675 and not runningMiniWm():
self.window.set_resizable(True)
self.window.set_size_request(-1, -1)
self.window.fullscreen()