summaryrefslogtreecommitdiffstats
path: root/perl-install/mygtk2.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-02-04 13:22:05 +0000
committerThierry Vignaud <tv@mandriva.org>2008-02-04 13:22:05 +0000
commit1e165699460b3ede380c17c7303f005f10a002ab (patch)
tree12a252fd7328898b8558f7787a6e02af80dbe77b /perl-install/mygtk2.pm
parentbfd3b231137765f76e7b58ab43336421a3d68b78 (diff)
downloaddrakx-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.pm1
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') {