diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-09-10 15:02:38 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-09-10 15:02:38 +0000 |
commit | 21909431521cdcaa28e166a40d51db777745bfcd (patch) | |
tree | 2205332a33e6c88e00a3a1b6238bc6c7d2e83e50 /perl-install/ugtk2.pm | |
parent | 3db371938195669fd2843d1d2f5ccbc449af718d (diff) | |
download | drakx-21909431521cdcaa28e166a40d51db777745bfcd.tar drakx-21909431521cdcaa28e166a40d51db777745bfcd.tar.gz drakx-21909431521cdcaa28e166a40d51db777745bfcd.tar.bz2 drakx-21909431521cdcaa28e166a40d51db777745bfcd.tar.xz drakx-21909431521cdcaa28e166a40d51db777745bfcd.zip |
(create_okcancel) fix position of cancel button in popups
Diffstat (limited to 'perl-install/ugtk2.pm')
-rw-r--r-- | perl-install/ugtk2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index f32ca85dd..7e5650860 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -541,7 +541,7 @@ sub create_okcancel { # we put space to group buttons in two packs (but if there's only one when not in wizard mode) # but in the installer where all windows run in wizard mode because of design even when not in a wizard step $bprev = gtknew('Label') if !$cancel && $::Wizard_no_previous && !@left && !@right; - if ($::isWizard) { + if ($::isWizard || $w->{pop_it}) { # wizard mode: order is cancel/left_extras/white/right_extras/prev/next unshift @left, $w->{wizcancel} if !$::isInstall; push @right, $bprev, $bok; |