summaryrefslogtreecommitdiffstats
path: root/perl-install/diskdrake/hd_gtk.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-08-13 09:08:52 +0000
committerThierry Vignaud <tv@mandriva.org>2008-08-13 09:08:52 +0000
commit91c1c8287f5a63431289c8364ec710a17393854b (patch)
tree62cc18f1896fcce8a64b208e8454d5f14dda608d /perl-install/diskdrake/hd_gtk.pm
parent13577cba5c2ecf05b7cc6dce9191fba9021aa9c9 (diff)
downloaddrakx-91c1c8287f5a63431289c8364ec710a17393854b.tar
drakx-91c1c8287f5a63431289c8364ec710a17393854b.tar.gz
drakx-91c1c8287f5a63431289c8364ec710a17393854b.tar.bz2
drakx-91c1c8287f5a63431289c8364ec710a17393854b.tar.xz
drakx-91c1c8287f5a63431289c8364ec710a17393854b.zip
(add_kind2notebook) add spacing
Diffstat (limited to 'perl-install/diskdrake/hd_gtk.pm')
-rw-r--r--perl-install/diskdrake/hd_gtk.pm4
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},
]);