summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_gtk.pm
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2004-02-20 07:59:35 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2004-02-20 07:59:35 +0000
commit821b87ccc89205cc1a7e9a71607a6dff81ffdcd1 (patch)
tree858ce4dac0bfc20a58fc12960ddbe4665fb8460f /perl-install/install_steps_gtk.pm
parent71fabc9db115e4f83d83eea433b154d9bc51ea95 (diff)
downloaddrakx-821b87ccc89205cc1a7e9a71607a6dff81ffdcd1.tar
drakx-821b87ccc89205cc1a7e9a71607a6dff81ffdcd1.tar.gz
drakx-821b87ccc89205cc1a7e9a71607a6dff81ffdcd1.tar.bz2
drakx-821b87ccc89205cc1a7e9a71607a6dff81ffdcd1.tar.xz
drakx-821b87ccc89205cc1a7e9a71607a6dff81ffdcd1.zip
allow to specify the Xnest wanted resolution with --vga
Diffstat (limited to 'perl-install/install_steps_gtk.pm')
-rw-r--r--perl-install/install_steps_gtk.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm
index 6c237f243..9947d3fb5 100644
--- a/perl-install/install_steps_gtk.pm
+++ b/perl-install/install_steps_gtk.pm
@@ -44,7 +44,7 @@ sub new($$) {
my @options = $wanted_DISPLAY;
if ($server eq 'Xnest') {
- push @options, '-ac', '-geometry', $o->{vga16} ? '640x480' : '800x600';
+ push @options, '-ac', '-geometry', $o->{vga} || ($o->{vga16} ? '640x480' : '800x600');
} elsif (!$::move) {
install_gtk::createXconf($f, @{$o->{mouse}}{"XMOUSETYPE", "device"}, $o->{mouse}{wacom}[0], $Driver);