diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-09-20 21:03:56 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-09-20 21:03:56 +0000 |
commit | 77238a534b13b4804da5f3412c3741dd51914fa5 (patch) | |
tree | a5eb2b635537517f9639d1bc20d8eee7be485c5c | |
parent | f106bb914a689f1875314250cb61b194f84dd644 (diff) | |
download | rpmdrake-77238a534b13b4804da5f3412c3741dd51914fa5.tar rpmdrake-77238a534b13b4804da5f3412c3741dd51914fa5.tar.gz rpmdrake-77238a534b13b4804da5f3412c3741dd51914fa5.tar.bz2 rpmdrake-77238a534b13b4804da5f3412c3741dd51914fa5.tar.xz rpmdrake-77238a534b13b4804da5f3412c3741dd51914fa5.zip |
(get_info) fix provided installed version for comparing
we were providing the version of the package we were looking at...
"bug" introduced in commit r5401 on 2012-08-24:
"(get_info) provide version to extract_header() thus fixing changelog
highlighting"
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | Rpmdrake/gui.pm | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,5 @@ - fix deselecting updates when clicking on "New dependancies" +- fix changelog highlighting - rpmdrake: o make failing to open RPM DB non fatal when reseting selection (mga#7352) diff --git a/Rpmdrake/gui.pm b/Rpmdrake/gui.pm index 4b0ba0c5..ae13844d 100644 --- a/Rpmdrake/gui.pm +++ b/Rpmdrake/gui.pm @@ -1045,7 +1045,7 @@ sub get_info { exists $pkgs->{$key} or return [ [ N("Description not available for this package\n") ] ]; #- get the description if needed: - exists $pkgs->{$key}{description} or slow_func($widget, sub { extract_header($pkgs->{$key}, $urpm, 'info', version_release($pkgs->{$key}{pkg})) }); + exists $pkgs->{$key}{description} or slow_func($widget, sub { extract_header($pkgs->{$key}, $urpm, 'info', find_installed_version($pkgs->{$key}{pkg})) }); format_pkg_simplifiedinfo($pkgs, $key, $urpm, $descriptions); } |