summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-03-14 19:20:54 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-03-14 19:20:54 +0000
commit270efc7cc3ffa9f39acb06708563bc26bab67f8d (patch)
treee319150952184de5329f3d12b2bb8dbaa9480452 /perl-install/install_steps_interactive.pm
parent8231635f39c6781bde8282bbc9155e9975bbc753 (diff)
downloaddrakx-backup-do-not-use-270efc7cc3ffa9f39acb06708563bc26bab67f8d.tar
drakx-backup-do-not-use-270efc7cc3ffa9f39acb06708563bc26bab67f8d.tar.gz
drakx-backup-do-not-use-270efc7cc3ffa9f39acb06708563bc26bab67f8d.tar.bz2
drakx-backup-do-not-use-270efc7cc3ffa9f39acb06708563bc26bab67f8d.tar.xz
drakx-backup-do-not-use-270efc7cc3ffa9f39acb06708563bc26bab67f8d.zip
(chooseGroups): disable the size display as it is wrong (for the beta2)
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index aca617b65..c5eed7281 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -545,7 +545,7 @@ sub chooseGroups {
$size_text = _("Selected size %d%s", pkgs::correctSize($size / sqr(1024)), _("MB"));
}; &$update_size;
$o->ask_from_entries_refH('', _("Package Group Selection"), [
- { val => \$size_text, type => 'label' }, {},
+# { val => \$size_text, type => 'label' }, {},
(map {;
my $old = $path;
$path = $o->{compssUsers}{$_}{path};
@@ -561,7 +561,7 @@ sub chooseGroups {
"$f.png";
},
disabled => sub { $all },
- text => translate($o->{compssUsers}{$_}{label}) . sprintf(" (%d%s)", $compute_size->(@{$compssUsers->{$_}{flags}}) / sqr(1024), _("MB")),
+ text => translate($o->{compssUsers}{$_}{label}),# . sprintf(" (%d%s)", $compute_size->(@{$compssUsers->{$_}{flags}}) / sqr(1024), _("MB")),
} } @groups),
if_($o->{meta_class} eq 'desktop', { text => _("All"), val => \$all, type => 'bool' }),
if_($individual, { text => _("Individual package selection"), val => $individual, advanced => 1, type => 'bool' }),