diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-09-06 16:18:42 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-09-06 16:18:42 +0000 |
commit | 02c4150b64f6c76c8e5282b4ead401c05422bcba (patch) | |
tree | 5d16a81deb0c772df70790e85f84b7031514a83e /perl-install/install_steps_interactive.pm | |
parent | 4967f59d7ab44e955a12ecb9d9797d04c02fccc6 (diff) | |
download | drakx-02c4150b64f6c76c8e5282b4ead401c05422bcba.tar drakx-02c4150b64f6c76c8e5282b4ead401c05422bcba.tar.gz drakx-02c4150b64f6c76c8e5282b4ead401c05422bcba.tar.bz2 drakx-02c4150b64f6c76c8e5282b4ead401c05422bcba.tar.xz drakx-02c4150b64f6c76c8e5282b4ead401c05422bcba.zip |
fix keyboard config + some cleanup
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index c16e04d49..3e61b1470 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -155,7 +155,8 @@ sub selectKeyboard { my $l = keyboard::lang2keyboards($o->{lang}); #- good guess, don't ask - return if !$::expert && !$clicked && $l->[0][1] > 90; + return install_steps::selectKeyboard($o) + if !$::expert && !$clicked && $l->[0][1] > 90; my @best = map { $_->[0] } @$l; push @best, 'us_intl' if !member('us_intl', @best); |