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:49:03 +0900
commita4635a17a41a7f5e9350c4c5be0903cbf7a39c72 (patch)
treec2655f0ae15d2b7e6014293fdd41cc3c358d90cf
parentf06bd09ac8cb7764f05bf91fe77d98c8ff4bee2a (diff)
downloadefl-1.20.tar.gz
ecore_imf: turn off autocapital mode in password layoutefl-1.20
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 402f194c11..a830e2cb0a 100644
--- a/src/lib/ecore_imf/ecore_imf_context.c
+++ b/src/lib/ecore_imf/ecore_imf_context.c
@@ -943,6 +943,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);
}
}