Skip to content

Commit

Permalink
Properly wire key-release-event when creating plug
Browse files Browse the repository at this point in the history
Fixes #274
  • Loading branch information
keis committed May 14, 2016
1 parent 86a0edc commit 0da3f70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gui.c
Expand Up @@ -373,9 +373,9 @@ plug_init ()

g_object_connect (G_OBJECT (uzbl.gui.plug),
/* FIXME: Should we really quit GTK if the plug is destroyed? */
"signal::destroy", G_CALLBACK (destroy_cb), NULL,
"signal::key-press-event", G_CALLBACK (key_press_cb), NULL,
"signal::key-release-event", G_CALLBACK (key_press_cb), NULL,
"signal::destroy", G_CALLBACK (destroy_cb), NULL,
"signal::key-press-event", G_CALLBACK (key_press_cb), NULL,
"signal::key-release-event", G_CALLBACK (key_release_cb), NULL,
NULL);
}

Expand Down

0 comments on commit 0da3f70

Please sign in to comment.