From a64e97bd3d4890ed51887dd259378fce941dfb90 Mon Sep 17 00:00:00 2001 From: Francois Pons Date: Fri, 9 Aug 2002 09:24:14 +0000 Subject: allow cancel button even for wizard. --- perl-install/interactive.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-install/interactive.pm b/perl-install/interactive.pm index 2ba24f076..619eeb3ab 100644 --- a/perl-install/interactive.pm +++ b/perl-install/interactive.pm @@ -315,7 +315,7 @@ sub ask_from_normalize { $common->{advanced_label} ||= _("Advanced"); $common->{advanced_label_close} ||= _("Basic"); $common->{$_} = [ deref($common->{$_}) ] foreach qw(messages advanced_messages); - add2hash_($common, { ok => _("Ok"), cancel => _("Cancel") }) if !exists $common->{ok} && !$::isWizard; + 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 } }); } -- cgit v1.2.1