diff options
-rw-r--r-- | perl-install/install_steps_interactive.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 095329b74..e9e7a2578 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -156,7 +156,9 @@ sub selectInstallClass { foreach (grep { $_->{mntpoint} } @{$o->{fstab}}) { my ($options, $unknown) = fs::mount_options_unpack($_); $options->{encrypted} or next; - $_->{encrypt_key} = $o->ask_from_entry('', N("Encryption key for %s", $_->{mntpoint})); + $o->ask_from_({ focus_first => 1 }, + [ { label => N("Encryption key for %s", $_->{mntpoint}), + hidden => 1, val => \$_->{encrypt_key} } ]); } $o->{isUpgrade} = 1; } |