diff options
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/diskdrake/interactive.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index ce39511bf..ca458cfce 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,5 +1,6 @@ - diskdrake: o allow resizing on lvm for mounted ext3/4 and not mounted xfs + o use a list instead of combo in the partition type selection window Version 11.86 - 12 February 2009 diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm index a0d912ec3..49cd00cb1 100644 --- a/perl-install/diskdrake/interactive.pm +++ b/perl-install/diskdrake/interactive.pm @@ -581,7 +581,7 @@ sub Type { $in->ask_from_({ title => N("Change partition type") }, [ { label => N("Which filesystem do you want?"), title => 1 }, - { label => N("Type"), val => \$type_name, list => \@types, sort => 0, do_not_ellipsize => 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; my $type = $type_name && fs::type::type_name2subpart($type_name); |