discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=0cb7013cdaeeadef52793508da9a857a9136c615
commit 0cb7013cdaeeadef52793508da9a857a9136c615 Author: Mike Blumenkrantz <[email protected]> Date: Thu Mar 31 11:14:27 2016 -0400 block wl keyboard modifier updating during input grabs --- src/bin/e_comp_wl_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_wl_input.c b/src/bin/e_comp_wl_input.c index 4b2807e..d3ae0c2 100644 --- a/src/bin/e_comp_wl_input.c +++ b/src/bin/e_comp_wl_input.c @@ -558,7 +558,7 @@ e_comp_wl_input_keyboard_modifiers_update(void) if (!e_comp_wl_input_keyboard_modifiers_serialize()) return; - if (!e_comp_wl->kbd.focused) return; + if ((!e_comp_wl->kbd.focused) || e_comp->input_key_grabs) return; serial = wl_display_next_serial(e_comp_wl->wl.disp); EINA_LIST_FOREACH(e_comp_wl->kbd.focused, l, res) --
