diff options
-rwxr-xr-x | gui.py | 3 | ||||
-rw-r--r-- | ui/anaconda.glade | 1 |
2 files changed, 3 insertions, 1 deletions
@@ -1511,6 +1511,9 @@ class InstallControlWindow: if (gtk.gdk.screen_height() < 600) or \ (gtk.gdk.screen_height() <= 675 and not runningMiniWm()): i.hide() + self.window.set_resizable(True) + self.window.set_size_request(-1, -1) + self.window.fullscreen() else: self.window.set_size_request(800, 600) self.window.set_position(gtk.WIN_POS_CENTER_ALWAYS) diff --git a/ui/anaconda.glade b/ui/anaconda.glade index b0d273c60..9e04ec89d 100644 --- a/ui/anaconda.glade +++ b/ui/anaconda.glade @@ -6,7 +6,6 @@ <widget class="GtkWindow" id="mainWindow"> <property name="width_request">610</property> <property name="height_request">450</property> - <property name="visible">True</property> <property name="title" translatable="yes"></property> <property name="type">GTK_WINDOW_TOPLEVEL</property> <property name="window_position">GTK_WIN_POS_CENTER</property> |