diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-08-13 09:08:52 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-08-13 09:08:52 +0000 |
commit | 91c1c8287f5a63431289c8364ec710a17393854b (patch) | |
tree | 62cc18f1896fcce8a64b208e8454d5f14dda608d | |
parent | 13577cba5c2ecf05b7cc6dce9191fba9021aa9c9 (diff) | |
download | drakx-91c1c8287f5a63431289c8364ec710a17393854b.tar drakx-91c1c8287f5a63431289c8364ec710a17393854b.tar.gz drakx-91c1c8287f5a63431289c8364ec710a17393854b.tar.bz2 drakx-91c1c8287f5a63431289c8364ec710a17393854b.tar.xz drakx-91c1c8287f5a63431289c8364ec710a17393854b.zip |
(add_kind2notebook) add spacing
-rw-r--r-- | perl-install/diskdrake/hd_gtk.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm index 2d2162b17..de3042a6e 100644 --- a/perl-install/diskdrake/hd_gtk.pm +++ b/perl-install/diskdrake/hd_gtk.pm @@ -130,14 +130,14 @@ sub add_kind2notebook { die if $kind->{main_box}; $kind->{display_box} = gtkset_size_request(Gtk2::HBox->new(0,0), $width, $height); - $kind->{action_box} = gtkset_size_request(Gtk2::VBox->new(0,0), $::isStandalone ? 165 : 150, $::isEmbedded ? 150 : 180); + $kind->{action_box} = gtkset_size_request(Gtk2::VBox->new(), $::isStandalone ? 165 : 150, $::isEmbedded ? 150 : 180); $kind->{info_box} = Gtk2::VBox->new(0,0); my $box = gtkpack_(Gtk2::VBox->new(0,7), 0, $kind->{display_box}, 0, filesystems_button_box(), 1, $kind->{info_box}); - $kind->{main_box} = gtknew('HBox', children => [ + $kind->{main_box} = gtknew('HBox', spacing => 5, children => [ 1, $box, 0, $kind->{action_box}, ]); |