From 31285fb5dce5de80da82e75ca76b0594c4ef73b2 Mon Sep 17 00:00:00 2001 From: Amitesh Singh Date: Tue, 5 Dec 2017 13:41:51 +0900 Subject: [PATCH] title: set focus to title entry Focus was not coming to entry on 'set title' popup. Set focus to a popup subobject after showing popup. @fix --- src/bin/win.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/win.c b/src/bin/win.c index 0d9aa29a..610f8b79 100644 --- a/src/bin/win.c +++ b/src/bin/win.c @@ -3647,9 +3647,9 @@ term_set_title(Term *term) evas_object_smart_callback_add(o, "aborted", _set_title_cancel_cb, popup); elm_object_content_set(popup, o); evas_object_show(o); - elm_object_focus_set(o, EINA_TRUE); - evas_object_show(popup); + + elm_object_focus_set(o, EINA_TRUE); } static void