aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoão Victor Duarte Martins <jvictor@mandriva.com>2010-04-29 02:40:39 +0000
committerJoão Victor Duarte Martins <jvictor@mandriva.com>2010-04-29 02:40:39 +0000
commitb46b68a4ebfcb888367b3f90b1b5c1112bfa3baf (patch)
tree69ea6cd4b6afe3ad084ca9e6eed428a57ce17f08
parent43cef5cea1c4d4c42a6740360e4bdb237f0c8d21 (diff)
downloadrpmdrake-b46b68a4ebfcb888367b3f90b1b5c1112bfa3baf.tar
rpmdrake-b46b68a4ebfcb888367b3f90b1b5c1112bfa3baf.tar.gz
rpmdrake-b46b68a4ebfcb888367b3f90b1b5c1112bfa3baf.tar.bz2
rpmdrake-b46b68a4ebfcb888367b3f90b1b5c1112bfa3baf.tar.xz
rpmdrake-b46b68a4ebfcb888367b3f90b1b5c1112bfa3baf.zip
- removed conditional to allow file listing of uninstalled packages
(#58871)
-rw-r--r--NEWS1
-rw-r--r--Rpmdrake/gui.pm6
2 files changed, 3 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index fab08687..7f5885d2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,4 @@
+- uninstalled package shows files list (bug #58871)
- added auto_select and clean_cache options to conf file (bug #48552)
Version 5.26 - 6 April 2010, João Victor Martins
diff --git a/Rpmdrake/gui.pm b/Rpmdrake/gui.pm
index 41306f77..94dd6607 100644
--- a/Rpmdrake/gui.pm
+++ b/Rpmdrake/gui.pm
@@ -300,10 +300,8 @@ sub format_pkg_simplifiedinfo {
gtknew('TextView', text => get_details($key, $pkg, $upkg, $installed_version, $raw_medium))) ];
$details_exp->set_use_markup(1);
push @$s, [ "\n\n" ];
- if (exists $pkg->{files}) {
- push @$s, [ build_expander($pkg, N("Files:"), 'files', sub { files_format($pkg->{files}) }) ];
- push @$s, [ "\n\n" ];
- }
+ push @$s, [ build_expander($pkg, N("Files:"), 'files', sub { files_format($pkg->{files}) }) ];
+ push @$s, [ "\n\n" ];
push @$s, [ build_expander($pkg, N("Changelog:"), 'changelog', sub { $pkg->{changelog} }, $installed_version) ];
push @$s, [ "\n\n" ];