diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-10-16 10:56:30 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-10-16 11:14:50 +0200 |
commit | 3add6a575add1f64c46903ae0109e1fd24d5bfb1 (patch) | |
tree | 455ed4969e587c135ceef8262e2684c69df88602 | |
parent | b21eb767363f787bae9ae52df04df99940f60276 (diff) | |
download | rpmdrake-3add6a575add1f64c46903ae0109e1fd24d5bfb1.tar rpmdrake-3add6a575add1f64c46903ae0109e1fd24d5bfb1.tar.gz rpmdrake-3add6a575add1f64c46903ae0109e1fd24d5bfb1.tar.bz2 rpmdrake-3add6a575add1f64c46903ae0109e1fd24d5bfb1.tar.xz rpmdrake-3add6a575add1f64c46903ae0109e1fd24d5bfb1.zip |
show a tooltip for arch column too (mga#7962)
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | rpmdrake | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -- add tooltip to status column (mga#7962) +- add tooltips to arch & status columns (mga#7962) Version 6.23 - 7 October 2016, Thierry Vignaud @@ -349,6 +349,7 @@ sub run_treeview_dialog { #-PO: "Architecture" but to be kept *small* !!! N("Arch."), text => $pkg_columns{arch}, + tip => N("This shows the architecture for with the package has been built"), }), ); foreach my $col (@columns{@columns}) { @@ -361,6 +362,7 @@ sub run_treeview_dialog { ) ); $col->{widget}->set_sort_column_id($col->{markup} || $col->{text}); + $col->{widget}->get_button->set_tooltip_markup($col->{tip}) if $w && $col->{tip}; } $columns{$_}{widget}->set_sizing('autosize') foreach @columns; $columns{name}{widget}->set_property('expand', '1'); |