diff options
author | Frédéric Buclin <LpSolit@netscape.net> | 2017-05-06 20:02:52 +0200 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2017-06-23 08:05:56 +0100 |
commit | 14eb1e5893eb7bc6748cf388df7cb05a3f05c7da (patch) | |
tree | 30a4906269c4401a23e15840581690c0e32e16ef /perl-install/install/steps_gtk.pm | |
parent | bf6a242fafbfc2baa9b4001141dd75eec8d289a1 (diff) | |
download | drakx-14eb1e5893eb7bc6748cf388df7cb05a3f05c7da.tar drakx-14eb1e5893eb7bc6748cf388df7cb05a3f05c7da.tar.gz drakx-14eb1e5893eb7bc6748cf388df7cb05a3f05c7da.tar.bz2 drakx-14eb1e5893eb7bc6748cf388df7cb05a3f05c7da.tar.xz drakx-14eb1e5893eb7bc6748cf388df7cb05a3f05c7da.zip |
Increase the default window size of the installer to 1024x768 (mga#20624)
This permits to correctly display the different panels as some
of them contain quite a lot of data.
Diffstat (limited to 'perl-install/install/steps_gtk.pm')
-rw-r--r-- | perl-install/install/steps_gtk.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index 61f367f3f..eb4e42c77 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -114,7 +114,7 @@ sub _launchX { my @options = $wanted_DISPLAY; if ($server eq 'Xnest') { - push @options, '-ac', '-geometry', $o->{vga} || ($o->{vga16} ? '640x480' : '800x600'); + push @options, '-ac', '-geometry', $o->{vga} || ($o->{vga16} ? '640x480' : '1024x768'); } else { install::gtk::createXconf($f, $Driver); @@ -600,7 +600,7 @@ sub installPackages { my $progress_total = 0; $box->pack_end(gtkshow(gtknew('VBox', border_width => 7, spacing => 3, children_loose => [ gtknew('ScrolledWindow', child => $pkg_log_widget, - hide_ref => \$show_advertising, height => 250, to_bottom => 1), + hide_ref => \$show_advertising, height => $::real_windowheight - 215, to_bottom => 1), gtknew('ProgressBar', fraction_ref => \ (my $pkg_progress), hide_ref => \$show_advertising), gtknew('HButtonBox', layout => 'start', children_loose => [ N("Time remaining:"), |