From ba3968a8225a23ede6e6d91d9a0948bf451c443e Mon Sep 17 00:00:00 2001 From: Rui Matos Date: Mon, 25 Nov 2013 14:06:10 +0100 Subject: [PATCH] keybindings: Fix typo in port to Clutter events We always want to trigger on key press. --- src/core/keybindings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/keybindings.c b/src/core/keybindings.c index e3289639c..e69910842 100644 --- a/src/core/keybindings.c +++ b/src/core/keybindings.c @@ -2001,7 +2001,7 @@ process_iso_next_group (MetaDisplay *display, gboolean activate; int i; - if (event->type != CLUTTER_KEY_RELEASE) + if (event->type == CLUTTER_KEY_RELEASE) return FALSE; activate = FALSE;