diff options
author | Francois Pons <fpons@mandriva.com> | 2001-08-30 15:38:23 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-08-30 15:38:23 +0000 |
commit | 4712b4808871a53f3803ef33d8fcac701919d545 (patch) | |
tree | fb45051635aa369721d9203c8829606d3e4756e3 /perl-install | |
parent | 32dec9255441bab8e54df8178c9598c0dd4b70de (diff) | |
download | drakx-4712b4808871a53f3803ef33d8fcac701919d545.tar drakx-4712b4808871a53f3803ef33d8fcac701919d545.tar.gz drakx-4712b4808871a53f3803ef33d8fcac701919d545.tar.bz2 drakx-4712b4808871a53f3803ef33d8fcac701919d545.tar.xz drakx-4712b4808871a53f3803ef33d8fcac701919d545.zip |
for single heads mode, no screen id should be set in file (or XFree is going
mad, but he is right, no ?)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/Xconfigurator.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index d227bd458..9bc685986 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -234,7 +234,7 @@ sub cardConfiguration(;$$$) { } foreach my $e (values %single_heads) { push @choices, { text => _("Configure only card \"%s\" (%s)", $e->{identifier}, $e->{busid}), - code => sub { add2hash($card, $e); delete $card->{cards}; delete $card->{Xinerama} } }; + code => sub { add2hash($card, $e); foreach (qw(cards screen Xinerama)) { delete $card->{$_} } } }; } $tc = $in->ask_from_listf(_("Multi-head configuration"), _("Your system support multiple head configuration. |