From a1acfc52b9808f7f6c9bc03962f6a8d0a0aa7035 Mon Sep 17 00:00:00 2001 From: raster Date: Fri, 10 Jun 2011 07:22:27 +0000 Subject: [PATCH] and remove double callback calls! aaagh. changes didnt see the subtle differences in the cb names! git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@60178 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/elm_win.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c index 25f0100..d4838d5 100644 --- a/src/lib/elm_win.c +++ b/src/lib/elm_win.c @@ -304,7 +304,6 @@ _elm_win_focus_in(Ecore_Evas *ee) win = elm_widget_data_get(obj); if (!win) return; /*NB: Why two different "focus signals" here ??? */ - evas_object_smart_callback_call(win->win_obj, SIG_FOCUS_IN, NULL); // FIXME: remove me evas_object_smart_callback_call(win->win_obj, SIG_FOCUS_IN, NULL); win->focus_highlight.cur.visible = EINA_TRUE; _elm_win_focus_highlight_reconfigure_job_start(win); @@ -326,7 +325,6 @@ _elm_win_focus_out(Ecore_Evas *ee) if (!obj) return; win = elm_widget_data_get(obj); if (!win) return; - evas_object_smart_callback_call(win->win_obj, SIG_FOCUS_OUT, NULL); // FIXME: remove me evas_object_smart_callback_call(win->win_obj, SIG_FOCUS_OUT, NULL); win->focus_highlight.cur.visible = EINA_FALSE; _elm_win_focus_highlight_reconfigure_job_start(win); -- 2.7.4