diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-28 14:47:57 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-28 14:47:57 +0100 |
commit | 24e5026cdc82292243c9f313d5c90d318bb9abd6 (patch) | |
tree | cb3b17daddb644677b944d62caf24ddaf07180c3 /perl-install | |
parent | e779a9401a2971e0338fdf3e7dffaa60629d3b28 (diff) | |
download | drakx-24e5026cdc82292243c9f313d5c90d318bb9abd6.tar drakx-24e5026cdc82292243c9f313d5c90d318bb9abd6.tar.gz drakx-24e5026cdc82292243c9f313d5c90d318bb9abd6.tar.bz2 drakx-24e5026cdc82292243c9f313d5c90d318bb9abd6.tar.xz drakx-24e5026cdc82292243c9f313d5c90d318bb9abd6.zip |
wrap too big labels in summary dialog (mga#11793)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/steps_gtk.pm | 2 |
2 files changed, 2 insertions, 1 deletions
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 { |