summaryrefslogtreecommitdiff
path: root/plugins/gtkui/interface.c
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2013-08-25 16:42:52 +0200
committerGravatar waker <wakeroid@gmail.com>2013-08-25 16:42:52 +0200
commit5802fcec75b58a270a9459fb26a606af018adaf0 (patch)
treefd2b4f1ce9f34993a136e0ec121a1ed36f2ee494 /plugins/gtkui/interface.c
parent78bf40fc922fdb1f6d5b3e7a511ed589a37a5a26 (diff)
gtkui: fixed hotkeys vs focus problem; updated help.txt
Diffstat (limited to 'plugins/gtkui/interface.c')
-rw-r--r--plugins/gtkui/interface.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/gtkui/interface.c b/plugins/gtkui/interface.c
index e8dc2e3b..7338c732 100644
--- a/plugins/gtkui/interface.c
+++ b/plugins/gtkui/interface.c
@@ -553,9 +553,9 @@ create_mainwin (void)
gtk_widget_show (statusbar);
gtk_box_pack_start (GTK_BOX (vbox1), statusbar, FALSE, FALSE, 0);
- g_signal_connect ((gpointer) mainwin, "key_press_event",
- G_CALLBACK (on_mainwin_key_press_event),
- NULL);
+ g_signal_connect_after ((gpointer) mainwin, "key_press_event",
+ G_CALLBACK (on_mainwin_key_press_event),
+ NULL);
g_signal_connect ((gpointer) mainwin, "delete_event",
G_CALLBACK (on_mainwin_delete_event),
NULL);