diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-01-22 12:19:45 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-01-22 12:19:45 +0000 |
commit | 53b5abee1210a87a0004573a9dd7d7e3dfbe05ea (patch) | |
tree | 6ceda3e349011de93250708f96bd3df7b7527242 /perl-install/Xconfigurator.pm | |
parent | 88d070945ccf746f7df37369a0a5f4167ca95c8b (diff) | |
download | drakx-53b5abee1210a87a0004573a9dd7d7e3dfbe05ea.tar drakx-53b5abee1210a87a0004573a9dd7d7e3dfbe05ea.tar.gz drakx-53b5abee1210a87a0004573a9dd7d7e3dfbe05ea.tar.bz2 drakx-53b5abee1210a87a0004573a9dd7d7e3dfbe05ea.tar.xz drakx-53b5abee1210a87a0004573a9dd7d7e3dfbe05ea.zip |
$::beginner is deprecated, replaced by !$::expert
Diffstat (limited to 'perl-install/Xconfigurator.pm')
-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 783aa010b..d2a2bd612 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -237,7 +237,7 @@ sub cardConfiguration(;$$$) { _("Your card can have 3D hardware acceleration support but only with XFree %s. Your card is supported by XFree %s which may have a better support in 2D.", $xf3_ver, $xf4_ver) : _("Your card can have 3D hardware acceleration support with XFree %s.", $xf3_ver)) . "\n\n\n" . $msg; - $::beginner and @choices = (); #- keep it by default here as it is the only choice available. + $::expert or @choices = (); #- keep it by default here as it is the only choice available. unshift @choices, { text => _("XFree %s with 3D hardware acceleration", $xf3_ver), code => sub { $card->{use_xf4} = ''; log::l("Using XFree $xf3_ver with 3D hardware acceleration") } }; |