diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-08-10 21:21:00 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-08-10 21:21:00 +0000 |
commit | 771861e22516a38b7e3ac15bc63ec2fba3a4c4ac (patch) | |
tree | 61366260bbe2d2a0897b21425e73ba83dc425955 /perl-install/diskdrake | |
parent | 7876c5560d45793df3d5791d4c8b56c8281d662c (diff) | |
download | drakx-771861e22516a38b7e3ac15bc63ec2fba3a4c4ac.tar drakx-771861e22516a38b7e3ac15bc63ec2fba3a4c4ac.tar.gz drakx-771861e22516a38b7e3ac15bc63ec2fba3a4c4ac.tar.bz2 drakx-771861e22516a38b7e3ac15bc63ec2fba3a4c4ac.tar.xz drakx-771861e22516a38b7e3ac15bc63ec2fba3a4c4ac.zip |
use Gtk2::Button->new_with_label instead of Gtk2::Button->new for some widgets otherwise underscores become underlines (bug #4678)
Diffstat (limited to 'perl-install/diskdrake')
-rw-r--r-- | perl-install/diskdrake/hd_gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm index eee2d269f..a2316a050 100644 --- a/perl-install/diskdrake/hd_gtk.pm +++ b/perl-install/diskdrake/hd_gtk.pm @@ -272,7 +272,7 @@ sub create_buttons4partitions { } foreach my $entry (@parts) { - my $w = Gtk2::Button->new($entry->{mntpoint} || '') or die ''; + my $w = Gtk2::Button->new_with_label($entry->{mntpoint} || '') or die ''; $w->signal_connect(focus_in_event => sub { current_entry_changed($kind, $entry); $w->grab_focus }); #- grab_focus is needed because gtk2 is buggy. Forcing an expose event would be enough $w->signal_connect(button_press_event => sub { current_entry_changed($kind, $entry); $w->grab_focus }); #- grab_focus is needed because gtk2 is buggy. The creation of widgets causes the lost of the focus $w->signal_connect(key_press_event => sub { |