diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-02-04 13:22:05 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-02-04 13:22:05 +0000 |
commit | 1e165699460b3ede380c17c7303f005f10a002ab (patch) | |
tree | 12a252fd7328898b8558f7787a6e02af80dbe77b /perl-install/mygtk2.pm | |
parent | bfd3b231137765f76e7b58ab43336421a3d68b78 (diff) | |
download | drakx-1e165699460b3ede380c17c7303f005f10a002ab.tar drakx-1e165699460b3ede380c17c7303f005f10a002ab.tar.gz drakx-1e165699460b3ede380c17c7303f005f10a002ab.tar.bz2 drakx-1e165699460b3ede380c17c7303f005f10a002ab.tar.xz drakx-1e165699460b3ede380c17c7303f005f10a002ab.zip |
(_gtk_any_ButtonBox) XButtonBoxes support ->set_border_width()
Diffstat (limited to 'perl-install/mygtk2.pm')
-rw-r--r-- | perl-install/mygtk2.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm index 16d0c302d..73007dc72 100644 --- a/perl-install/mygtk2.pm +++ b/perl-install/mygtk2.pm @@ -774,6 +774,7 @@ sub _gtk_any_ButtonBox { if (!$w) { $w = "Gtk2::$class"->new; $w->set_homogeneous(delete $opts->{homogenous}) if exists $opts->{homogenous}; + $w->set_border_width(delete $opts->{border_width}) if exists $opts->{border_width}; $w->set_spacing(delete $opts->{spacing}) if exists $opts->{spacing}; $w->set_layout(delete $opts->{layout} || 'spread'); } elsif ($action eq 'gtkset') { |