From 24e5026cdc82292243c9f313d5c90d318bb9abd6 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Thu, 28 Nov 2013 14:47:57 +0100 Subject: wrap too big labels in summary dialog (mga#11793) --- perl-install/install/NEWS | 1 + perl-install/install/steps_gtk.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'perl-install/install') diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 193d30c08..210197a65 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -2,6 +2,7 @@ - fix left panel text being black instead of white (mga#11792) - fix calling "child1_shrink" via package "Gtk3::HPaned" (mga#11797) - fix using old toolbar API that is no more available (mga#11791) +- wrap too big labels in summary dialog (mga#11793) Version 16.0 - 23 November 2013 diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index ff396e123..3fc72b597 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -700,7 +700,7 @@ sub summary_prompt { gtknew('Title1', label => mygtk3::asteriskize(escape_text_for_TextView_markup_format($group))) ]), '' ]; } - $e->{widget} = gtknew('Label_Right', width => $::real_windowwidth * 0.72, alignment => [ 1, 1 ]); + $e->{widget} = gtknew('Label_Right', width => $::real_windowwidth * 0.72, alignment => [ 1, 1 ], line_wrap => 1); push @table, [], [ gtknew('HBox', children_tight => [ $e->{widget}, gtknew('Alignment', width => 10) ]), gtknew('Button', text => N("Configure"), clicked => sub { -- cgit v1.2.1