From 2eac820139ab949135c8a76de8af3ec0c2356632 Mon Sep 17 00:00:00 2001 From: "bunam.jeon" Date: Wed, 17 Apr 2013 15:54:32 +0900 Subject: [PATCH] Remove IME check logic when text changed on input tag [Title] Remove IME check logic when text changed on input tag [Issue#] N/A [Problem] formdatabase does not appear when use host keyboard [Cause] It is not appear if do not use IME. [Solution] Remove IME check logic Change-Id: I0e658ff868b79c44d301fb7d6488e144ae528f4e --- Source/WebKit2/UIProcess/API/efl/ewk_view.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp b/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp index 68e8324..586cbc6 100755 --- a/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp +++ b/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp @@ -1585,10 +1585,6 @@ void ewk_view_text_change_in_textfield(Evas_Object* ewkView, const String& name, if (!ewk_settings_form_candidate_data_enabled_get(ewk_view_settings_get(ewkView))) return; - InputMethodContextEfl* imfContext = impl->inputMethodContext(); - if (!imfContext || !imfContext->isShow()) - return; - if (value.isEmpty()) { if(smartData->api->formdata_candidate_is_showing(smartData)) smartData->api->formdata_candidate_hide(smartData); -- 2.7.4