diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-09-02 13:37:57 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-09-02 13:37:57 +0000 |
commit | 4785bd2c16ec201b13dcf879916eae4c81652072 (patch) | |
tree | 75992a9bdde098b294aca5adac640c528fe28fca /perl-install/install/steps_gtk.pm | |
parent | 32813e3beb619fdc35771e38dfbf6d61acc46dde (diff) | |
download | drakx-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/install/steps_gtk.pm')
-rw-r--r-- | perl-install/install/steps_gtk.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index 790849e6d..19a3da8cf 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -280,7 +280,9 @@ sub reallyChooseDesktop { ugtk2::gtkadd($w->{window}, gtknew('VBox', children => [ - 0, gtknew('Title2', width => mygtk2::get_label_width(), label => $message . + 0, gtknew('Title2', + # workaround infamous 6 years old gnome bug #101968: + width => mygtk2::get_label_width(), label => $message . N("Click on images in order to see a bigger preview")), 1, gtknew('HButtonBox', children_loose => \@l), 0, $w->create_okcancel(N("Next"), undef), |