Remove IME check logic when text changed on input tag
authorbunam.jeon <bunam.jeon@samsung.com>
Wed, 17 Apr 2013 06:54:32 +0000 (15:54 +0900)
committerGerrit Code Review <gerrit2@kim11>
Wed, 17 Apr 2013 10:57:33 +0000 (19:57 +0900)
[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

index 68e8324..586cbc6 100755 (executable)
@@ -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);