diff options
Diffstat (limited to 'perl-install/install/gtk.pm')
-rw-r--r-- | perl-install/install/gtk.pm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/perl-install/install/gtk.pm b/perl-install/install/gtk.pm index 37b31c109..094f3617e 100644 --- a/perl-install/install/gtk.pm +++ b/perl-install/install/gtk.pm @@ -163,7 +163,8 @@ sub create_steps_window { ], ) ); - + + $root_window->set_position(GTK_WIN_POS_CENTER_ALWAYS); $root_window->show_all; } @@ -221,8 +222,8 @@ sub init_sizes { $::stepswidth = $::rootwidth <= 640 ? 0 : 196; ($o->{windowwidth}, $o->{windowheight}) = ($::rootwidth - $::stepswidth, $::rootheight); # Adapt the window size to available screen width and height. - $::real_windowwidth = $::rootwidth > 800 ? $::rootwidth - 224 : 576; - $::real_windowheight = $::rootheight > 600 ? $::rootheight - 135 : 465; + $::real_windowwidth = $::rootwidth > 800 ? 800 : 576; + $::real_windowheight = $::rootheight > 600 ? 633 : 465; } sub handle_unsafe_mouse { |