diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 033e64620..5f6307c2e 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -211,7 +211,7 @@ sub selectKeyboard { [ if_(@best > 1, { val => \$o->{keyboard}, type => 'list', format => $format, sort => 1, list => [ @best ] }), { val => \$ext_keyboard, type => 'list', format => $format, - list => [ keyboard::keyboards ], advanced => @best > 1 } + list => [ difference2([ keyboard::keyboards ], \@best) ], advanced => @best > 1 } ]); delete $o->{keyboard_unsafe}; |