summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xperl-install/standalone/keyboarddrake8
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/standalone/keyboarddrake b/perl-install/standalone/keyboarddrake
index 5a108ed85..9b1356056 100755
--- a/perl-install/standalone/keyboarddrake
+++ b/perl-install/standalone/keyboarddrake
@@ -39,11 +39,11 @@ if (my ($kb) = grep { !/^-/ } @ARGV) {
]) or goto end;
keyboard::group_toggle_choose($in, $keyboard) or goto choose;
-}
-if ($::expert) {
- my $isNotDelete = !$in->ask_yesorno("BackSpace", N("Do you want the BackSpace to return Delete in console?"), 1);
- $keyboard->{BACKSPACE} = $isNotDelete ? "BackSpace" : "Delete";
+ if ($::expert) {
+ my $isNotDelete = !$in->ask_yesorno("BackSpace", N("Do you want the BackSpace to return Delete in console?"), 1);
+ $keyboard->{BACKSPACE} = $isNotDelete ? "BackSpace" : "Delete";
+ }
}
keyboard::setxkbmap($keyboard);