diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-10-16 10:50:01 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-10-16 10:50:22 +0200 |
commit | b21eb767363f787bae9ae52df04df99940f60276 (patch) | |
tree | e94a2ad667280257324ff8851eaef134be4b6451 | |
parent | 4834ee187d21f91296c9de2b8134fbf932e7094a (diff) | |
download | rpmdrake-b21eb767363f787bae9ae52df04df99940f60276.tar rpmdrake-b21eb767363f787bae9ae52df04df99940f60276.tar.gz rpmdrake-b21eb767363f787bae9ae52df04df99940f60276.tar.bz2 rpmdrake-b21eb767363f787bae9ae52df04df99940f60276.tar.xz rpmdrake-b21eb767363f787bae9ae52df04df99940f60276.zip |
add tooltip to status column (mga#7962)
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | rpmdrake | 8 |
2 files changed, 10 insertions, 0 deletions
@@ -1,3 +1,5 @@ +- add tooltip to status column (mga#7962) + Version 6.23 - 7 October 2016, Thierry Vignaud - prevent copying Left-to-right_mark (mga#18569) @@ -381,6 +381,14 @@ sub run_treeview_dialog { ); $rdr->set_fixed_size(34, 24); $pixcolumn->set_sort_column_id($pkg_columns{state}); + $pixcolumn->get_button->set_tooltip_markup( + join("\n", N("The icon shows the package status:"), + N("A green icon means the package is installed"), + N("A blue icon means this is an update for an installed package"), + N("A red stop sign means the package cannot be removed"), # " as it's part of base system" + N("An orange icon with a down arrow means this package has been selected to be installed"), + N("A red icon with an up arrow means this package has been selected to be uninstalled") + )); compute_main_window_size($w); |