From 9ba3e292dac9b8540f05b193504978ca3a6a64e4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Iv=C3=A1n=20Briano?= Date: Sat, 30 Jul 2011 03:15:43 +0000 Subject: [PATCH] I don't care if the entry is not focused, update the cursor position anyway. Returning at that point was making non focused entries, like say... the chat buffer in an IM client to not scroll properly when we tell it to do so. SVN revision: 61917 --- src/lib/elm_entry.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/elm_entry.c b/src/lib/elm_entry.c index a83bd10..b7dc438 100644 --- a/src/lib/elm_entry.c +++ b/src/lib/elm_entry.c @@ -548,7 +548,6 @@ _recalc_cursor_geometry(Evas_Object *obj) Widget_Data *wd = elm_widget_data_get(obj); if (!wd) return; evas_object_smart_callback_call(obj, SIG_CURSOR_CHANGED, NULL); - if (!elm_object_focus_get(obj)) return; if (!wd->deferred_recalc_job) { Evas_Coord cx, cy, cw, ch; -- 2.7.4