ami pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=31285fb5dce5de80da82e75ca76b0594c4ef73b2

commit 31285fb5dce5de80da82e75ca76b0594c4ef73b2
Author: Amitesh Singh <amitesh...@samsung.com>
Date:   Tue Dec 5 13:41:51 2017 +0900

    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 0d9aa29..610f8b7 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

-- 


Reply via email to