diff options
author | Jeremy Katz <katzj@redhat.com> | 2009-04-08 11:49:25 -0400 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2009-04-08 12:13:57 -0400 |
commit | 7cbfd744236267090e437f02f7824d7da1db1e46 (patch) | |
tree | 54de8d615d2d9c70ff4aa063783489d2e3c10ecd /gui.py | |
parent | b59b0afcae18b030626205f179bd60ee068368db (diff) | |
download | anaconda-7cbfd744236267090e437f02f7824d7da1db1e46.tar.gz anaconda-7cbfd744236267090e437f02f7824d7da1db1e46.tar.xz anaconda-7cbfd744236267090e437f02f7824d7da1db1e46.zip |
Revert "Show the header in certain non-lowres cases" (#493153)
This reverts commit 2734cf8a8077f7108bb65b3724af075825d6eb44.
Doing this means that we can't see all of the UI on some netbooks with higher
DPI screens
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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() |