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/interactive/gtk.pm | |
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/interactive/gtk.pm')
-rw-r--r-- | perl-install/interactive/gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm index fb71a595f..31d828c9c 100644 --- a/perl-install/interactive/gtk.pm +++ b/perl-install/interactive/gtk.pm @@ -420,7 +420,7 @@ sub ask_fromW { $set = sub { $w->set($_[0]) }; $width = length ${$e->{val}}; } elsif ($e->{type} eq 'button') { - $w = Gtk2::Button->new(''); + $w = Gtk2::Button->new_with_label(''); $w->signal_connect(clicked => sub { $get_all->(); $mainw->{rwindow}->hide; |