diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-07-15 17:42:24 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-07-15 17:42:24 +0000 |
commit | db87fd89b2600cba313098968368fb6ef603b875 (patch) | |
tree | 7e95775f5778bcbd63c707e5e7f19313cb782448 /perl-install | |
parent | bfaeac11c08de05eb07ee73eeed2648304b00f83 (diff) | |
download | drakx-db87fd89b2600cba313098968368fb6ef603b875.tar drakx-db87fd89b2600cba313098968368fb6ef603b875.tar.gz drakx-db87fd89b2600cba313098968368fb6ef603b875.tar.bz2 drakx-db87fd89b2600cba313098968368fb6ef603b875.tar.xz drakx-db87fd89b2600cba313098968368fb6ef603b875.zip |
fix help/close layout
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/drakbackup | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakbackup b/perl-install/standalone/drakbackup index 4eab24723..9ced8f4db 100755 --- a/perl-install/standalone/drakbackup +++ b/perl-install/standalone/drakbackup @@ -4353,11 +4353,11 @@ sub button_box_main() { $button_box_tmp->destroy; gtkpack($button_box, - $button_box_tmp = gtkpack(gtkset_layout(new Gtk2::HButtonBox, 'start'), - gtksignal_connect(Gtk2::Button->new_from_stock('gtk-close'), clicked => sub { ugtk2->exit(0) }), + $button_box_tmp = gtkpack(Gtk2::HButtonBox->new, gtksignal_connect(Gtk2::Button->new_from_stock('gtk-help'), clicked => sub { adv_help(\&interactive_mode_box, $custom_help) }), + gtksignal_connect(Gtk2::Button->new_from_stock('gtk-close'), clicked => sub { ugtk2->exit(0) }), ), ); } |