diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-02-07 16:17:01 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-02-07 16:17:01 +0000 |
commit | c72abc30cca9ec5ca33826b569d35284b3b98480 (patch) | |
tree | 58444d545a0eb87a3cfcc3e9191756281fc65de1 /perl-install | |
parent | 987580b77a036114c46ffd4b5e1b53754200dfdb (diff) | |
download | drakx-c72abc30cca9ec5ca33826b569d35284b3b98480.tar drakx-c72abc30cca9ec5ca33826b569d35284b3b98480.tar.gz drakx-c72abc30cca9ec5ca33826b569d35284b3b98480.tar.bz2 drakx-c72abc30cca9ec5ca33826b569d35284b3b98480.tar.xz drakx-c72abc30cca9ec5ca33826b569d35284b3b98480.zip |
(Options): wrap the help text
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/diskdrake/interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm index 61ac4db2d..a4d731b83 100644 --- a/perl-install/diskdrake/interactive.pm +++ b/perl-install/diskdrake/interactive.pm @@ -791,7 +791,7 @@ sub Options { '', [ (map {; - { label => $_, text => formatAlaTeX($help{$_}), val => \$options->{$_}, + { label => $_, text => warp_text(formatAlaTeX($help{$_})), val => \$options->{$_}, advanced => !$part->{rootDevice} && !member($_, @simple_options), if_(!/=$/, type => 'bool'), } } keys %$options), { label => _("Various"), val => \$unknown, advanced => 1 }, |