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/install/steps_gtk.pm | |
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/install/steps_gtk.pm')
-rw-r--r-- | perl-install/install/steps_gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |