summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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()