From 54dd9e586b59fdacb54bcd2f78d29870d00b1f3e Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Thu, 16 Jan 2014 21:48:40 +0100 Subject: do not show labels on partition buttons (mga#11988) should prevent window to move at install time --- perl-install/diskdrake/hd_gtk.pm | 10 ++++++++-- perl-install/install/NEWS | 3 +++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm index 62b58882d..e01f65b2b 100644 --- a/perl-install/diskdrake/hd_gtk.pm +++ b/perl-install/diskdrake/hd_gtk.pm @@ -352,8 +352,14 @@ sub create_buttons4partitions { } my $info = $entry->{mntpoint} || $entry->{device_LABEL} || ''; $info .= "\n" . ($entry->{size} ? formatXiB($entry->{size}, 512) : N("Unknown")) if $info; - my $w = Gtk3::ToggleButton->new_with_label($info) or internal_error('new_with_label'); - $w->get_child->set_ellipsize('end'); + my $w; + if ($::isInstall) { + $w = Gtk3::ToggleButton->new(); + }else { + $w = Gtk3::ToggleButton->new_with_label($info); + $w->get_child->set_ellipsize('end'); + } + $w or internal_error('new_with_label'); $w->set_tooltip_text($info); $w->signal_connect(clicked => sub { $current_button != $w or return; diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index e5372f1d2..40b24a1c7 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,6 @@ +- partitioning: + o do not show labels on partition buttons (mga#11988) + Version 16.22 - 15 January 2014 - partitioning: -- cgit v1.2.1