billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=33eb5261e6a21c87b4f207b1202fb0c79b4d7b50
commit 33eb5261e6a21c87b4f207b1202fb0c79b4d7b50 Author: Boris Faure <[email protected]> Date: Mon Mar 19 22:12:08 2018 +0100 termio: force refocus after ctx popup is deleted. Closes T6782 --- src/bin/termio.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bin/termio.c b/src/bin/termio.c index 8ca7e0a..e8f819b 100644 --- a/src/bin/termio.c +++ b/src/bin/termio.c @@ -926,6 +926,10 @@ _cb_ctxp_del(void *data, Termio *sd = data; EINA_SAFETY_ON_NULL_RETURN(sd); sd->ctxpopup = NULL; + + /* Force refocus */ + term_unfocus(sd->term); + term_focus(sd->term); } static void --
