summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>1999-11-08 10:32:17 +0000
committerFrancois Pons <fpons@mandriva.com>1999-11-08 10:32:17 +0000
commit1b306ec02f454e4f97d033c0fe4111fc1747b944 (patch)
treecaa6e48e2c60f1be1238b2577dd09a527d50bcd1
parent3240a98c869b07d8ac517a55f5988399b0249e75 (diff)
downloaddrakx-backup-do-not-use-1b306ec02f454e4f97d033c0fe4111fc1747b944.tar
drakx-backup-do-not-use-1b306ec02f454e4f97d033c0fe4111fc1747b944.tar.gz
drakx-backup-do-not-use-1b306ec02f454e4f97d033c0fe4111fc1747b944.tar.bz2
drakx-backup-do-not-use-1b306ec02f454e4f97d033c0fe4111fc1747b944.tar.xz
drakx-backup-do-not-use-1b306ec02f454e4f97d033c0fe4111fc1747b944.zip
*** empty log message ***
-rw-r--r--perl-install/install_steps_interactive.pm1
-rw-r--r--perl-install/interactive_gtk.pm2
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index a8f3d03c2..b50428ef5 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -198,6 +198,7 @@ sub choosePartitionsToFormat($$) {
return if $::beginner && 0 == grep { ! $_->{toFormat} } @l;
$_->{toFormat} ||= $_->{toFormatUnsure} foreach @l;
+ log::l("preparing to format $_->{mntpoint}") foreach grep { $_->{toFormat} } @l;
$o->ask_many_from_list_ref('', _("Choose the partitions you want to format"),
[ map { isSwap($_) ? type2name($_->{type}) . " ($_->{device})" : $_->{mntpoint} } @l ],
diff --git a/perl-install/interactive_gtk.pm b/perl-install/interactive_gtk.pm
index dea36ff77..ced261891 100644
--- a/perl-install/interactive_gtk.pm
+++ b/perl-install/interactive_gtk.pm
@@ -24,7 +24,7 @@ sub ask_from_listW {
my $w = my_gtk->new($title, %$o);
$w->{retval} = $def || $l->[0]; #- nearly especially for the X test case (see timeout in Xconfigurator.pm)
- if (@$l < 5 && sum(map { length $_ } @$l) < 70) {
+ if (@$l < 5 && sum(map { length $_ } @$l) < 90) {
my $defW;
my $f = sub { $w->{retval} = $_[1]; Gtk->main_quit };
my $box = (@$l <= 2 && (map { split "\n" } @$messages) > 6) ?