summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-08-13 09:08:02 +0000
committerThierry Vignaud <tv@mandriva.org>2008-08-13 09:08:02 +0000
commit989e16ba8089097bb38c8b4a3fdc8a3da4117c07 (patch)
treee0e0cc5addb95efe67bf906983f9e20c8a8593cc
parent4e0d710e02dde931a07320382c86135ee149f2d2 (diff)
downloaddrakx-989e16ba8089097bb38c8b4a3fdc8a3da4117c07.tar
drakx-989e16ba8089097bb38c8b4a3fdc8a3da4117c07.tar.gz
drakx-989e16ba8089097bb38c8b4a3fdc8a3da4117c07.tar.bz2
drakx-989e16ba8089097bb38c8b4a3fdc8a3da4117c07.tar.xz
drakx-989e16ba8089097bb38c8b4a3fdc8a3da4117c07.zip
(filesystems_button_box) move fs type label as a tip
-rw-r--r--perl-install/diskdrake/hd_gtk.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm
index 0937329d5..d53b15030 100644
--- a/perl-install/diskdrake/hd_gtk.pm
+++ b/perl-install/diskdrake/hd_gtk.pm
@@ -355,10 +355,10 @@ sub filesystems_button_box() {
my %name2fs_type = (Ext3 => 'ext3', Ext4 => 'ext4dev', 'XFS' => 'xfs', Swap => 'swap', Other => 'other', "Windows" => 'vfat', HFS => 'hfs');
gtkpack(Gtk2::HBox->new(0,0),
- N("Filesystem types:"),
map {
my $t = $name2fs_type{$_};
my $w = gtknew('Button', text => translate($_), widget_name => 'PART_' . ($t || 'empty'),
+ tip => N("Filesystem types:"),
clicked => sub { try_('', \&createOrChangeType, $t, current_hd(), current_part()) });
$w->can_focus(0);
$w;