diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-10-18 12:08:44 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-10-18 12:08:44 +0000 |
commit | fe63f41573eaad71f256684c1c745333e4d42088 (patch) | |
tree | a91db5cc3366e507f73cda932fac2c2b172d78cd /perl-install/my_gtk.pm | |
parent | 50bb149d89d484a5cb67e31506f37d799119819b (diff) | |
download | drakx-fe63f41573eaad71f256684c1c745333e4d42088.tar drakx-fe63f41573eaad71f256684c1c745333e4d42088.tar.gz drakx-fe63f41573eaad71f256684c1c745333e4d42088.tar.bz2 drakx-fe63f41573eaad71f256684c1c745333e4d42088.tar.xz drakx-fe63f41573eaad71f256684c1c745333e4d42088.zip |
no_comment
Diffstat (limited to 'perl-install/my_gtk.pm')
-rw-r--r-- | perl-install/my_gtk.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/my_gtk.pm b/perl-install/my_gtk.pm index 8eefa123c..7eefa8685 100644 --- a/perl-install/my_gtk.pm +++ b/perl-install/my_gtk.pm @@ -319,8 +319,8 @@ sub _create_window($$) { $w->set_title($title); - $w->signal_connect("map_event" => sub { c::XSetInputFocus($w->window->XWINDOW); }) - if $my_gtk::force_focus || $o->{force_focus}; + $w->signal_connect("map_event" => sub { c::XSetInputFocus($w->window->XWINDOW); }) if $my_gtk::force_focus || $o->{force_focus}; + $w->signal_connect("expose_event" => sub { c::XSetInputFocus($w->window->XWINDOW); }) if $my_gtk::force_focus || $o->{force_focus}; $w->signal_connect("delete_event" => sub { $o->{retval} = undef; Gtk->main_quit }); $w->set_uposition(@{$my_gtk::force_position || $o->{force_position}}) if $my_gtk::force_position || $o->{force_position}; |