seoz pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=00e9c9b5541f9246664d76eb8d173b950c040f72
commit 00e9c9b5541f9246664d76eb8d173b950c040f72 Author: Daniel Juyung Seo <seojuyu...@gmail.com> Date: Fri Mar 7 20:34:37 2014 +0900 win: Set correct parameter for focus highlight job. Special thanks to Hosang Kim for the report. --- 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 2f2ae00..d72c3a0 100644 --- a/src/lib/elm_win.c +++ b/src/lib/elm_win.c @@ -5825,7 +5825,7 @@ _elm_win_focus_highlight_start(Evas_Object *obj) if (!elm_win_focus_highlight_enabled_get(obj)) return; sd->focus_highlight.cur.visible = EINA_TRUE; sd->focus_highlight.geometry_changed = EINA_TRUE; - _elm_win_focus_highlight_reconfigure_job(sd); + _elm_win_focus_highlight_reconfigure_job(obj); } EAPI Ecore_Window --