From 45fcdec5dfb90e62e4ce1bf97cb1c796dba21be5 Mon Sep 17 00:00:00 2001 From: WooHyun Jung Date: Wed, 14 Dec 2011 00:43:15 +0000 Subject: [PATCH] elementary/elm_win : when window is shonw at the first time, only elm_win should be set as focused. not for child objects. SVN revision: 66174 --- src/lib/elm_win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c index c8363a7..b4bdc35 100644 --- a/src/lib/elm_win.c +++ b/src/lib/elm_win.c @@ -313,7 +313,7 @@ _elm_win_focus_in(Ecore_Evas *ee) _elm_widget_top_win_focused_set(win->win_obj, EINA_TRUE); if (win->show_count == 1) { - elm_object_focus_set(win->win_obj, EINA_TRUE); + elm_widget_focus_steal(win->win_obj); win->show_count++; } else -- 2.7.4