summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/ugtk2.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index d7528d7cb..771e56f6b 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -50,6 +50,8 @@ Version 11.72 - 9 December 2008
* list PC Speaker as sound card
* track duplicated input devices
* try harder to find duplicates
+- ugtk2:
+ o allow showing Skip button instead of Cancel in wizards
Version 11.71 - 6 November 2008
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm
index 04a4786f1..200e7a188 100644
--- a/perl-install/ugtk2.pm
+++ b/perl-install/ugtk2.pm
@@ -523,7 +523,7 @@ sub create_okcancel {
$bprev = $w->{cancel} = gtknew('Button', text => $cancel, clicked => $w->{cancel_clicked} ||
sub { log::l("default cancel_clicked"); undef $w->{retval}; Gtk2->main_quit });
}
- $w->{wizcancel} = gtknew('Button', text => N("Cancel"), clicked => sub { die 'wizcancel' }) if $::isWizard && !$::isInstall && !$::Wizard_no_cancel;;
+ $w->{wizcancel} = gtknew('Button', text => ($::Wizard_skip ? N("Skip") : N("Cancel")), clicked => sub { die 'wizcancel' }) if $::isWizard && !$::isInstall && !$::Wizard_no_cancel;;
if (!defined $wm_is_kde) {
require any;
my $wm = any::running_window_manager();