diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-03-06 11:00:26 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-03-06 11:00:26 +0000 |
commit | 142cd0f784f1df375f806451c88955c7f0c5c658 (patch) | |
tree | 8133c42ee10fcc8349e539b98f1ef10621c5a23f /perl-install | |
parent | 384ac224b1b88754513ec4b74b392eb29140c807 (diff) | |
download | drakx-backup-do-not-use-142cd0f784f1df375f806451c88955c7f0c5c658.tar drakx-backup-do-not-use-142cd0f784f1df375f806451c88955c7f0c5c658.tar.gz drakx-backup-do-not-use-142cd0f784f1df375f806451c88955c7f0c5c658.tar.bz2 drakx-backup-do-not-use-142cd0f784f1df375f806451c88955c7f0c5c658.tar.xz drakx-backup-do-not-use-142cd0f784f1df375f806451c88955c7f0c5c658.zip |
"ensure buttons are visible when the widgets above are too big" only at install
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/interactive/gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm index 0f427381e..a1dbd65e0 100644 --- a/perl-install/interactive/gtk.pm +++ b/perl-install/interactive/gtk.pm @@ -658,7 +658,7 @@ sub ask_fromW { $pack->pack_start($always_pack, 1, 1, 0); $always_pack->show; $pack->pack_start($advanced_pack, 1, 1, 0); if ($buttons_pack) { - if ($::isWizard && !$mainw->{pop_it}) { + if ($::isWizard && !$mainw->{pop_it} && $::isInstall) { $buttons_pack->set_size_request($::windowwidth * 0.9 - 20, -1); $buttons_pack = gtkpack__(Gtk2::HBox->new(0,0), $buttons_pack); } |