diff options
author | damien <damien@mandriva.com> | 2001-02-21 07:00:45 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-02-21 07:00:45 +0000 |
commit | 2dafba03eb96967ae1179a099febe966305038dd (patch) | |
tree | bf261cfa300bcea736fc3208b5d0adb1f9583ff8 /perl-install/interactive.pm | |
parent | c6fa524d837275a6d8480f3afdcbf45f7bbb5632 (diff) | |
download | drakx-backup-do-not-use-2dafba03eb96967ae1179a099febe966305038dd.tar drakx-backup-do-not-use-2dafba03eb96967ae1179a099febe966305038dd.tar.gz drakx-backup-do-not-use-2dafba03eb96967ae1179a099febe966305038dd.tar.bz2 drakx-backup-do-not-use-2dafba03eb96967ae1179a099febe966305038dd.tar.xz drakx-backup-do-not-use-2dafba03eb96967ae1179a099febe966305038dd.zip |
corrected wizard mode.
Diffstat (limited to 'perl-install/interactive.pm')
-rw-r--r-- | perl-install/interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive.pm b/perl-install/interactive.pm index 1d4dd0c68..162c7301b 100644 --- a/perl-install/interactive.pm +++ b/perl-install/interactive.pm @@ -236,7 +236,7 @@ sub ask_from_entries_refH_powered_normalize { $common->{advanced_label} ||= _("Advanced"); $common->{$_} = [ deref($common->{$_}) ] foreach qw(messages advanced_messages); - add2hash_($common, { ok => _("Ok"), cancel => _("Cancel") }) if !exists $common->{ok}; + add2hash_($common, { ok => _("Ok"), cancel => _("Cancel") }) if !exists $common->{ok} && !$::isWizard; add2hash_($common->{callbacks} ||= {}, { changed => sub {}, focus_out => sub {}, complete => sub { 0 }, canceled => sub { 0 } }); } |