summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJihoon Kim <jihoon48.kim@samsung.com>2018-06-04 10:47:55 +0900
committerJihoon Kim <jihoon48.kim@samsung.com>2018-06-04 10:47:55 +0900
commitdbb464e94e3b6a6d7557f2b2228e2be587d139d2 (patch)
tree63a5195faa0572c63e48698aebe549423ffe968c
parent9758f99e0b6c9df316e1a5e3f539528554be759a (diff)
downloadefl-dbb464e94e3b6a6d7557f2b2228e2be587d139d2.tar.gz
ecore_imf: turn off autocapital mode in password layout
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
-rw-r--r--src/lib/ecore_imf/ecore_imf_context.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/ecore_imf/ecore_imf_context.c b/src/lib/ecore_imf/ecore_imf_context.c
index 32c0bb9584..270004e81b 100644
--- a/src/lib/ecore_imf/ecore_imf_context.c
+++ b/src/lib/ecore_imf/ecore_imf_context.c
@@ -946,6 +946,9 @@ ecore_imf_context_input_panel_layout_set(Ecore_IMF_Context *ctx, Ecore_IMF_Input
ctx->klass->input_panel_layout_set(ctx, layout);
ctx->input_panel_layout = layout;
+
+ if (layout == ECORE_IMF_INPUT_PANEL_LAYOUT_PASSWORD)
+ ecore_imf_context_autocapital_type_set(ctx, ECORE_IMF_AUTOCAPITAL_TYPE_NONE);
}
}