diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2018-11-27 14:57:31 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2018-11-27 14:57:31 +0100 |
commit | d493169c872894fdfac04f04a58dff73a648dc38 (patch) | |
tree | 1ca13bf99ff3fec6b832058832194c35c6e8c116 /perl-install | |
parent | 56e71da7f383b0d33d2056f1c12381a5ae2ee305 (diff) | |
download | drakx-d493169c872894fdfac04f04a58dff73a648dc38.tar drakx-d493169c872894fdfac04f04a58dff73a648dc38.tar.gz drakx-d493169c872894fdfac04f04a58dff73a648dc38.tar.bz2 drakx-d493169c872894fdfac04f04a58dff73a648dc38.tar.xz drakx-d493169c872894fdfac04f04a58dff73a648dc38.zip |
add support for tooltips in summary
(needed for next commit)
Diffstat (limited to 'perl-install')
-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 213d1a96e..fd66c9989 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -702,7 +702,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 ], line_wrap => 1); + $e->{widget} = gtknew('Label_Right', width => $::real_windowwidth * 0.72, alignment => [ 1, 1 ], line_wrap => 1, tip => $e->{tip}); push @table, [], [ gtknew('HBox', children_tight => [ $e->{widget}, gtknew('Alignment', width => 10) ]), gtknew('Button', text => N("Configure"), clicked => sub { |