summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/interactive.pm4
-rw-r--r--perl-install/interactive/gtk.pm5
2 files changed, 2 insertions, 7 deletions
diff --git a/perl-install/interactive.pm b/perl-install/interactive.pm
index 958b54a6b..b32991c4c 100644
--- a/perl-install/interactive.pm
+++ b/perl-install/interactive.pm
@@ -195,7 +195,7 @@ sub ask_from_listf_raw {
sub ask_from_listf_raw_no_check {
my ($o, $common, $f, $l, $def) = @_;
- if (@$l <= 2 && !$::isWizard) {
+ if (@$l <= ($::isWizard ? 1 : 2)) {
my ($ok, $cancel) = map { $_ && may_apply($f, $_) } @$l;
if (length "$ok$cancel" < 70) {
my $ret = eval {
@@ -207,7 +207,7 @@ sub ask_from_listf_raw_no_check {
return $@ ? undef : $ret;
}
}
- ask_from_($o, $common, [ { val => \$def, type => 'list', list => $l, format => $f } ]) && $def;
+ ask_from_no_check($o, $common, [ { val => \$def, type => 'list', list => $l, format => $f } ]) && $def;
}
sub ask_from_treelist {
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm
index e67a4a5c7..63f50da37 100644
--- a/perl-install/interactive/gtk.pm
+++ b/perl-install/interactive/gtk.pm
@@ -21,11 +21,6 @@ sub leave_console { my ($o) = @_; common::setVirtual(delete $o->{suspended}) }
sub exit { ugtk2::exit(@_) }
-sub ask_warn {
- local $ugtk2::pop_it = 1;
- &interactive::ask_warn;
-}
-
sub ask_fileW {
my ($_o, $title, $dir) = @_;
my $w = ugtk2->new($title);