summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-09-18 13:16:35 +0000
committerThierry Vignaud <tv@mandriva.org>2008-09-18 13:16:35 +0000
commit164287bfbf509b02625b962fcf14156fc319ef09 (patch)
tree8093dddfd1fb5e563c57ac6d27a5bee36120efeb
parente1b89f677d0b0716805b7dbb0e9035cdf576f624 (diff)
downloaddrakx-164287bfbf509b02625b962fcf14156fc319ef09.tar
drakx-164287bfbf509b02625b962fcf14156fc319ef09.tar.gz
drakx-164287bfbf509b02625b962fcf14156fc319ef09.tar.bz2
drakx-164287bfbf509b02625b962fcf14156fc319ef09.tar.xz
drakx-164287bfbf509b02625b962fcf14156fc319ef09.zip
(Type) fix file system type drop down list showing most types as "..."
in "Change partition type" dialog in expert mode due to ellipsizing
-rw-r--r--perl-install/NEWS4
-rw-r--r--perl-install/diskdrake/interactive.pm2
-rw-r--r--perl-install/install/NEWS4
3 files changed, 9 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index c14b07669..25465acf9 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,7 @@
+- diskdrake:
+ o fix file system type drop down list showing most types as "..." in
+ "Change partition type" dialog in expert mode due to ellipsizing
+
Version 11.46 - 17 September 2008
- scannerdrake:
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm
index d4b10169f..a146f95b7 100644
--- a/perl-install/diskdrake/interactive.pm
+++ b/perl-install/diskdrake/interactive.pm
@@ -557,7 +557,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,
+ { label => N("Type"), val => \$type_name, list => \@types, sort => 0, 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);
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 1bd7b7298..adb9ca0be 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,7 @@
+- partitionning step
+ o fix file system type drop down list showing most types as "..." in
+ "Change partition type" dialog in expert mode due to ellipsizing
+
Version 11.46 - 17 September 2008
- libdrakX: