summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2009-04-08 11:49:25 -0400
committerJeremy Katz <katzj@redhat.com>2009-04-08 12:13:57 -0400
commit7cbfd744236267090e437f02f7824d7da1db1e46 (patch)
tree54de8d615d2d9c70ff4aa063783489d2e3c10ecd /gui.py
parentb59b0afcae18b030626205f179bd60ee068368db (diff)
downloadanaconda-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-xgui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui.py b/gui.py
index 0f18b7db0..cc2c527f2 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()