This reverts commit 2734cf8a8077f7108bb65b3724af075825d6eb44. Doing this means that we can't see all of the UI on some netbooks with higher DPI screens --- gui.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gui.py b/gui.py index 0f18b7d..cc2c527 100755 --- a/gui.py +++ b/gui.py @@ -1479,9 +1479,9 @@ class InstallControlWindow: dither = False, image = i) if p is None: print(_("Unable to load title bar")) - if gtk.gdk.screen_height() < 600: + if (gtk.gdk.screen_height() < 600) or \ + (gtk.gdk.screen_height() <= 675 and not runningMiniWm()): 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() -- 1.6.1 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list