From e461cb36cc04b9d6c2b75396b849d743269a2648 Mon Sep 17 00:00:00 2001 From: Jeonghyun Yun Date: Fri, 6 Apr 2012 09:59:24 +0900 Subject: [PATCH] [elm_entry] For sync with fast input, caching in elm_entry should be removed --- src/lib/elm_entry.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/lib/elm_entry.c b/src/lib/elm_entry.c index b1d90db..57f7945 100644 --- a/src/lib/elm_entry.c +++ b/src/lib/elm_entry.c @@ -2879,14 +2879,7 @@ _elm_entry_text_get(const Evas_Object *obj, const char *item) if (item && strcmp(item, "default")) return NULL; const char *text; if (!wd) return NULL; - if (wd->password) - { - if(wd->password_text) return wd->password_text; - } - else if (wd->text) - { - return wd->text; - } + text = edje_object_part_text_get(wd->ent, "elm.text"); if (!text) { -- 2.7.4