From f4d26144ed2547bff2011d37552bf86917ba0262 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 4 Mar 2003 12:08:06 +0000 Subject: - in focus_in_event for partition buttons, grab_focus is needed because gtk2 is buggy. Forcing an expose event would be enough - in button_press_event for partition buttons, grab_focus is needed because gtk2 is buggy. The creation of widgets causes the lost of the focus (fixes part of #2621) --- 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 cce017e50..6348b3f02 100644 --- a/perl-install/diskdrake/hd_gtk.pm +++ b/perl-install/diskdrake/hd_gtk.pm @@ -273,8 +273,8 @@ sub create_buttons4partitions { foreach my $entry (@parts) { my $w = Gtk2::Button->new($entry->{mntpoint} || '') or die ''; - $w->signal_connect(focus_in_event => sub { current_entry_changed($kind, $entry) }); - $w->signal_connect(button_press_event => sub { current_entry_changed($kind, $entry) }); + $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 { my (undef, $event) = @_; member('control-mask', @{$event->state}) or return; -- cgit v1.2.1