unset comp_grabbed flag before action client compositor ungrab

this flag was blocking accurate event propagation in some cases
This commit is contained in:
Mike Blumenkrantz 2016-06-01 13:06:52 -04:00
parent 48ee824c63
commit 492f9bcf4e
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}