diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-08-21 10:07:32 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-08-21 10:07:32 +0000 |
commit | 0ca3f96aef1175c1f7af4729185802c79516b55c (patch) | |
tree | 32f41a23bc4f21a0a684095a6123a54a3ec1088e | |
parent | e9ea0ceb7123866d1c97561eac05e395e0160b8f (diff) | |
download | drakx-0ca3f96aef1175c1f7af4729185802c79516b55c.tar drakx-0ca3f96aef1175c1f7af4729185802c79516b55c.tar.gz drakx-0ca3f96aef1175c1f7af4729185802c79516b55c.tar.bz2 drakx-0ca3f96aef1175c1f7af4729185802c79516b55c.tar.xz drakx-0ca3f96aef1175c1f7af4729185802c79516b55c.zip |
(add_kind2notebook) increase default width of buttons so that they fit in expert mode
-rw-r--r-- | perl-install/diskdrake/hd_gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm index d793bb616..d119c1db1 100644 --- a/perl-install/diskdrake/hd_gtk.pm +++ b/perl-install/diskdrake/hd_gtk.pm @@ -135,7 +135,7 @@ 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(), $::isStandalone ? 165 : 150, $::isEmbedded ? 150 : 180); + $kind->{action_box} = gtkset_size_request(Gtk2::VBox->new(), $::isStandalone ? 200 : 150, $::isEmbedded ? 150 : 180); $kind->{info_box} = Gtk2::VBox->new(0,0); my $box = gtkpack_(Gtk2::VBox->new(0,7), |