diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-12-18 11:51:07 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-12-18 11:51:07 +0000 |
commit | 0408c781e6affb569d3c004b98100014fff24b40 (patch) | |
tree | ec9b3d08eca2b34b4028887a03ff896c9cedd1b1 | |
parent | 61441f63bdba1521e6ba62f8e8aecf8cd5f73dfd (diff) | |
download | drakx-backup-do-not-use-0408c781e6affb569d3c004b98100014fff24b40.tar drakx-backup-do-not-use-0408c781e6affb569d3c004b98100014fff24b40.tar.gz drakx-backup-do-not-use-0408c781e6affb569d3c004b98100014fff24b40.tar.bz2 drakx-backup-do-not-use-0408c781e6affb569d3c004b98100014fff24b40.tar.xz drakx-backup-do-not-use-0408c781e6affb569d3c004b98100014fff24b40.zip |
fix previous button place at install time
-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 a0757ef82..6085e087a 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -512,7 +512,7 @@ sub create_okcancel { my @l; # buttons list if ($::isWizard) { # wizard mode: order is cancel/extras/white/prev/next - push @l, if_(!$::isInstall, $w->{wizcancel}), @extras, $bprev, if_($::isInstall, Gtk2::Label->new), $bok; + push @l, if_(!$::isInstall, $w->{wizcancel}), @extras, if_($::isInstall, Gtk2::Label->new), $bprev, $bok; } else { # normal mode: cancel/ok button follow current desktop's HIG my @extras = (@l2, @r2, if_($ok && $cancel, Gtk2::Label->new)); # space buttons but if there's only one |