diff options
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 6e8bff2e9..6cd107081 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -81,8 +81,12 @@ sub errorInStep($$) {} #------------------------------------------------------------------------------ sub selectLanguage { my ($o) = @_; - $o->{keyboard} ||= keyboard::lang2keyboard($o->{lang}); - selectKeyboard($o); + lang::set($o->{lang}); + + unless ($o->{keyboard_force}) { + $o->{keyboard} = keyboard::lang2keyboard($o->{lang}); + selectKeyboard($o); + } } #------------------------------------------------------------------------------ sub selectKeyboard { |