From 492f9bcf4e1d430050af67fd0a78d4455baef7d2 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 1 Jun 2016 13:06:52 -0400 Subject: [PATCH] unset comp_grabbed flag before action client compositor ungrab this flag was blocking accurate event propagation in some cases --- src/bin/e_client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_client.c b/src/bin/e_client.c index 7131308c2..b1b126080 100644 --- a/src/bin/e_client.c +++ b/src/bin/e_client.c @@ -387,8 +387,8 @@ _e_client_action_input_win_del(void) { if (!comp_grabbed) return 0; - e_comp_ungrab_input(1, 1); comp_grabbed = 0; + e_comp_ungrab_input(1, 1); return 1; }