diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-03-14 19:20:54 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-03-14 19:20:54 +0000 |
commit | 270efc7cc3ffa9f39acb06708563bc26bab67f8d (patch) | |
tree | e319150952184de5329f3d12b2bb8dbaa9480452 | |
parent | 8231635f39c6781bde8282bbc9155e9975bbc753 (diff) | |
download | drakx-270efc7cc3ffa9f39acb06708563bc26bab67f8d.tar drakx-270efc7cc3ffa9f39acb06708563bc26bab67f8d.tar.gz drakx-270efc7cc3ffa9f39acb06708563bc26bab67f8d.tar.bz2 drakx-270efc7cc3ffa9f39acb06708563bc26bab67f8d.tar.xz drakx-270efc7cc3ffa9f39acb06708563bc26bab67f8d.zip |
(chooseGroups): disable the size display as it is wrong (for the beta2)
-rw-r--r-- | perl-install/install_steps_interactive.pm | 4 |
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' }), |