diff options
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/diskdrake/interactive.pm | 4 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 |
3 files changed, 5 insertions, 2 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index f19f64b58..eca05fb1a 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,4 +1,6 @@ - reorganized modules in fs section of list_modules and added reiser4 +- diskdrake: + o limit partition type list to 2 colmuns instead of 4 Version 11.87 - 14 February 2009 diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm index 49cd00cb1..c86de51d3 100644 --- a/perl-install/diskdrake/interactive.pm +++ b/perl-install/diskdrake/interactive.pm @@ -485,7 +485,7 @@ sub Create { { label => N("Size in MB: "), val => \$mb_size, min => to_Mb(min_partition_size($hd)), max => to_Mb($def_size), type => 'range', SpinButton => $::expert, changed => sub { $part->{start} = min($part->{start}, $max - $mb_size * 2048) } }, { label => N("Filesystem type: "), val => \$type_name, list => [ fs::type::type_names($::expert, $hd) ], - sort => 0, if_($::expert, gtk => { wrap_width => 4 }, do_not_ellipsize => 1) }, + sort => 0, if_($::expert, gtk => { wrap_width => 2 }, do_not_ellipsize => 1) }, { label => N("Mount point: "), val => \$part->{mntpoint}, list => [ fsedit::suggestions_mntpoint($all_hds), '' ], disabled => sub { my $p = fs::type::type_name2subpart($type_name); isSwap($p) || isNonMountable($p) }, type => 'combo', not_edit => 0, }, @@ -582,7 +582,7 @@ sub Type { [ { label => N("Which filesystem do you want?"), title => 1 }, { label => N("Type"), val => \$type_name, type => 'list', list => \@types, sort => 1, do_not_ellipsize => 1, - focus => sub { 1 }, not_edit => 1, gtk => { wrap_width => 4 } } ]) or return; + focus => sub { 1 }, not_edit => 1, gtk => { wrap_width => 2 } } ]) or return; my $type = $type_name && fs::type::type_name2subpart($type_name); diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 2e77407e9..77e668a47 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,6 @@ - don't crash on invalid partition table - fix paths for installer (#47871) +- limit partition type list to 2 colmuns instead of 4 Version 11.86 - 12 February 2009 |