summaryrefslogtreecommitdiffstats
path: root/perl-install/diskdrake
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-12-12 14:07:30 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-12-12 14:07:30 +0000
commit594fd5f0bed65bbeaa66543062e620c2382f814c (patch)
tree4c523e89f1fccab604bc26e0872e643db3ffb73f /perl-install/diskdrake
parent24db99c4a86571199f0cdfa9bbd25146e3ff46c5 (diff)
downloaddrakx-backup-do-not-use-594fd5f0bed65bbeaa66543062e620c2382f814c.tar
drakx-backup-do-not-use-594fd5f0bed65bbeaa66543062e620c2382f814c.tar.gz
drakx-backup-do-not-use-594fd5f0bed65bbeaa66543062e620c2382f814c.tar.bz2
drakx-backup-do-not-use-594fd5f0bed65bbeaa66543062e620c2382f814c.tar.xz
drakx-backup-do-not-use-594fd5f0bed65bbeaa66543062e620c2382f814c.zip
when clicking on one of the legend buttons together with an existing partition
selected, it doesn't change the partition type, it tells to use "Type" (it used to be ignored in non-expert, and do a change type in expert)
Diffstat (limited to 'perl-install/diskdrake')
-rw-r--r--perl-install/diskdrake/hd_gtk.pm5
1 files changed, 1 insertions, 4 deletions
diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm
index 2c2be3faa..41df6a5f9 100644
--- a/perl-install/diskdrake/hd_gtk.pm
+++ b/perl-install/diskdrake/hd_gtk.pm
@@ -350,11 +350,8 @@ sub createOrChangeType {
} elsif (!$type) {
$in->ask_warn('', N("Use ``%s'' instead", N("Delete"))) if $part->{type};
} elsif ($part->{type}) {
- return unless $::expert;
return if $type == $part->{type};
- isBusy($part) and $in->ask_warn('', N("Use ``Unmount'' first")), return;
- diskdrake::interactive::ask_alldatawillbelost($in, $part, N_("After changing type of partition %s, all data on this partition will be lost")) or return;
- diskdrake::interactive::check_type($in, $type, $hd, $part) and fsedit::change_type($type, $hd, $part);
+ $in->ask_warn('', isBusy($part) ? N("Use ``Unmount'' first") : N("Use ``%s'' instead", N("Type")));
} else {
$part->{type} = $type;
diskdrake::interactive::Create($in, $hd, $part, $all_hds);