summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk2.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-09-02 13:37:57 +0000
committerThierry Vignaud <tv@mandriva.org>2008-09-02 13:37:57 +0000
commit4785bd2c16ec201b13dcf879916eae4c81652072 (patch)
tree75992a9bdde098b294aca5adac640c528fe28fca /perl-install/ugtk2.pm
parent32813e3beb619fdc35771e38dfbf6d61acc46dde (diff)
downloaddrakx-4785bd2c16ec201b13dcf879916eae4c81652072.tar
drakx-4785bd2c16ec201b13dcf879916eae4c81652072.tar.gz
drakx-4785bd2c16ec201b13dcf879916eae4c81652072.tar.bz2
drakx-4785bd2c16ec201b13dcf879916eae4c81652072.tar.xz
drakx-4785bd2c16ec201b13dcf879916eae4c81652072.zip
(create_boxradio,create_box_with_title,create_widget,get_label_width,main,reallyChooseDesktop)
explain infamous 6 years old gnome bug #101968 workarounds
Diffstat (limited to 'perl-install/ugtk2.pm')
-rw-r--r--perl-install/ugtk2.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm
index 4eb39660c..03e73c713 100644
--- a/perl-install/ugtk2.pm
+++ b/perl-install/ugtk2.pm
@@ -360,7 +360,9 @@ sub create_box_with_title {
} else {
my $new_label = sub {
my ($txt) = @_;
- ref($txt) ? $txt : gtknew('WrappedLabel', text_markup => $txt, width => mygtk2::get_label_width());
+ ref($txt) ? $txt : gtknew('WrappedLabel', text_markup => $txt,
+ # workaround infamous 6 years old gnome bug #101968:
+ width => mygtk2::get_label_width());
};
gtkpack__($box,
if_($::isWizard, gtknew('Label', height => 10)),