summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/install/NEWS2
-rw-r--r--perl-install/install/steps_gtk.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 818f6e469..ec61e66b3 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,5 @@
+- fix unwrapped label (#33243)
+
Version 10.4.191 - 5 September 2007, by Thierry Vignaud
- "choose desktop" step:
diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm
index cca9a1d95..dd3a96d8d 100644
--- a/perl-install/install/steps_gtk.pm
+++ b/perl-install/install/steps_gtk.pm
@@ -241,7 +241,7 @@ sub reallyChooseDesktop {
ugtk2::gtkadd($w->{window},
gtknew('VBox', children => [
- 0, gtknew('Label', text => $message),
+ 0, gtknew('WrappedLabel', text => $message),
(map { (1, $_) } @l),
0, $w->create_okcancel(N("Next"), undef),
]));