summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive/newt.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/interactive/newt.pm')
-rw-r--r--perl-install/interactive/newt.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/interactive/newt.pm b/perl-install/interactive/newt.pm
index cd1d25c36..37c5a62ef 100644
--- a/perl-install/interactive/newt.pm
+++ b/perl-install/interactive/newt.pm
@@ -172,7 +172,10 @@ sub ask_fromW {
(exists $common->{ok} ?
($common->{ok}, $common->{cancel}) :
($::isWizard ? _("Next") : _("Ok"), $common->{cancel} || ($::isWizard ? _("<- Previous") : _("Cancel"))));
- my ($buttons, $ok, $cancel) = Newt::Grid::ButtonBar($::isWizard ? ($b2, $b1) : ($b1, $b2));
+ #- b1 is always displayed, so giving it some label :-(
+ $b1 ||= $::isWizard ? _("Next") : _("Ok");
+ my @b2 = if_($b2, $b2);
+ my ($buttons, $ok, $cancel) = Newt::Grid::ButtonBar($::isWizard ? (@b2, $b1) : ($b1, @b2));
($ok, $cancel) = ($cancel, $ok) if $::isWizard;
my $form = Newt::Component::Form(\undef, '', 0);