From f0d7da4ce8633a0f7bfb043c8737166eb7d7104a Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Fri, 13 Feb 2009 14:46:42 +0000 Subject: diskdrake: use a list instead of combo in the partition type selection window --- perl-install/NEWS | 1 + perl-install/diskdrake/interactive.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'perl-install') 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); -- cgit v1.2.1