From 5299ba867274d525787d76f84fbfaaa6ff1b5370 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Thu, 19 Feb 2015 09:36:57 +0100 Subject: workaround too wide togglebuttons with empty label gtk+3 and/or Adwaita makes togglebuttons with empty label being at least 34px wide whereas when using ->new instead of ->new_with_label, they can be only 18px wide... ...which is still too much when we sized them to eg 5px and cause their container to enlarge --- perl-install/diskdrake/hd_gtk.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'perl-install/diskdrake') diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm index 63d52ecb2..a2a791cf7 100644 --- a/perl-install/diskdrake/hd_gtk.pm +++ b/perl-install/diskdrake/hd_gtk.pm @@ -354,8 +354,8 @@ 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 = ($info ? Gtk3::ToggleButton->new_with_label($info) : Gtk3::ToggleButton->new) or internal_error('new_with_label'); + $info and $w->get_child->set_ellipsize('end'); $w->set_tooltip_text($info); $w->signal_connect(clicked => sub { $current_button != $w or return; -- cgit v1.2.1