aboutsummaryrefslogtreecommitdiffstats
path: root/Rpmdrake/icon.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Rpmdrake/icon.pm')
-rw-r--r--Rpmdrake/icon.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Rpmdrake/icon.pm b/Rpmdrake/icon.pm
index e069be5f..52ebe3ee 100644
--- a/Rpmdrake/icon.pm
+++ b/Rpmdrake/icon.pm
@@ -187,9 +187,9 @@ sub get_icon {
my ($group, $parent) = @_;
my $pixbuf;
my $path = $group =~ /\|/ ? '/usr/share/icons/mini/' : '/usr/share/icons/';
- my $create_pixbuf = sub { gtknew('Pixbuf', file => join('', $path, $_[0], '.png')) };
- eval { $pixbuf = $create_pixbuf->($group_icons{$group}) };
- eval { $pixbuf ||= $create_pixbuf->($group_icons{$parent}) } if $parent;
+ my $create_pixbuf = sub { eval { gtknew('Pixbuf', file => join('', $path, $_[0], '.png')) } };
+ $pixbuf = $create_pixbuf->($group_icons{$group});
+ $pixbuf ||= $create_pixbuf->($group_icons{$parent}) if $parent;
$pixbuf ||= $create_pixbuf->('applications_section');
}