summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/fs/partitioning_wizard.pm4
-rw-r--r--perl-install/install/NEWS4
2 files changed, 7 insertions, 1 deletions
diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm
index f10e26f37..dad5e9d09 100644
--- a/perl-install/fs/partitioning_wizard.pm
+++ b/perl-install/fs/partitioning_wizard.pm
@@ -404,6 +404,7 @@ sub display_choices {
my $choicesbox = ugtk2::gtknew('VBox');
my $button;
+ my $sep;
foreach my $s (@solutions) {
my $item;
if($s eq 'free_space') {
@@ -434,7 +435,10 @@ sub display_choices {
$button?(group=>$button->get_group):());
$button->signal_connect('pressed', sub {$mainw->{sol} = $solutions{$s}; });
ugtk2::gtkpack2__($choicesbox, $button);
+ $sep = ugtk2::gtknew('HSeparator');
+ ugtk2::gtkpack2__($choicesbox, $sep);
}
+ $choicesbox->remove($sep);
ugtk2::gtkadd($contentbox, $choicesbox);
$mainw->{sol} = $solutions{@solutions[0]}
}
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index d2c310e39..cb8604256 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,4 +1,6 @@
-- do not fail when a windows partition is corrupted
+- partitionning_wizard:
+ o do not fail when a windows partition is corrupted
+ o add separator between solutions
Version 12.60.1 - 7 October 2009