summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/install_steps_gtk.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm
index 0c694ecdc..145b56159 100644
--- a/perl-install/install_steps_gtk.pm
+++ b/perl-install/install_steps_gtk.pm
@@ -327,6 +327,7 @@ sub choosePackagesTree {
foreach (sort @$compss) {
($root, $leaf) = m|(.*)/(.+)|o or ($root, $leaf) = ('', $_);
my $pkg = pkgs::packageByName($packages, $leaf);
+ $root .= '/' . _("Other") if pkgs::packageRate($pkg) < 4;
$add_node->($leaf, $root) if pkgs::packageMedium($pkg)->{selected};
}
}