From: Toan Pham Date: Fri, 12 Jun 2015 00:04:41 +0000 (-0400) Subject: fixed window focus and keyboard input issues X-Git-Tag: upstream/0.20.0~792 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fa40a9406b94a05fb6b38378de60be76586224bc;p=platform%2Fupstream%2Fenlightenment.git fixed window focus and keyboard input issues Summary: fixed window focus and keyboard input issues if the to-be-focused window is in an iconized state Reviewers: zmike Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D2644 --- diff --git a/src/bin/e_actions.c b/src/bin/e_actions.c index ca66311..4bb62ef 100644 --- a/src/bin/e_actions.c +++ b/src/bin/e_actions.c @@ -1149,6 +1149,11 @@ window_jump_to(const char *params) /* Change the virtual desktop if the window isn't on the current virtual desktop */ e_desk_show(ec->desk); + /* A minimized window wont be focusable for key input, un-minimize it */ + if (!ec->lock_user_iconify) + e_client_uniconify(ec); + + evas_object_raise(ec->frame); if (ec->zone != current_zone) e_util_pointer_center(ec);