[ecore_imf] not hide keyboard in ecore_imf_context_del
authorJihoon Kim <jihoon48.kim@samsung.com>
Tue, 4 Jan 2011 23:41:20 +0000 (08:41 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Tue, 4 Jan 2011 23:41:20 +0000 (08:41 +0900)
src/lib/ecore_imf/ecore_imf_context.c

index 8bcea57..2919045 100644 (file)
@@ -212,7 +212,6 @@ EAPI void
 ecore_imf_context_del(Ecore_IMF_Context *ctx)
 {
    void *data;
-   Ecore_IMF_Input_Panel_State state;
 
    if (!ECORE_MAGIC_CHECK(ctx, ECORE_MAGIC_CONTEXT))
      {
@@ -221,11 +220,6 @@ ecore_imf_context_del(Ecore_IMF_Context *ctx)
         return;
      }
 
-   state = ecore_imf_context_input_panel_state_get(ctx);
-
-   if (state == ECORE_IMF_INPUT_PANEL_STATE_SHOW)
-       ecore_imf_context_input_panel_hide(ctx);
-
    if (ctx->klass->del) ctx->klass->del(ctx);
    ECORE_MAGIC_SET(ctx, ECORE_MAGIC_NONE);