diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-08-27 17:58:11 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-08-27 17:58:11 +0000 |
commit | 426d308bc2e10f069d37a2c34bdafeb6dac7f056 (patch) | |
tree | 7c779c279d585f1b4927219344522be9d3bf5178 | |
parent | 117d1b76c48d6191841ab63efdb1253830543ad1 (diff) | |
download | drakx-426d308bc2e10f069d37a2c34bdafeb6dac7f056.tar drakx-426d308bc2e10f069d37a2c34bdafeb6dac7f056.tar.gz drakx-426d308bc2e10f069d37a2c34bdafeb6dac7f056.tar.bz2 drakx-426d308bc2e10f069d37a2c34bdafeb6dac7f056.tar.xz drakx-426d308bc2e10f069d37a2c34bdafeb6dac7f056.zip |
(create_box_with_title) better fix for workarounding infamous 6 years old gnome bug #101968
-rw-r--r-- | perl-install/ugtk2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index ecfe879e9..c5a397930 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -356,7 +356,7 @@ sub create_box_with_title { } else { my $new_label = sub { my ($txt) = @_; - ref($txt) ? $txt : gtknew('WrappedLabel', text_markup => $txt, width => 490); + ref($txt) ? $txt : gtknew('WrappedLabel', text_markup => $txt, width => mygtk2::get_label_width()); }; gtkpack__($box, if_($::isWizard, gtknew('Label', height => 10)), |