Add auto_capitalization_word 81/58481/1
authorinhonghan <inhong1.han@samsung.com>
Mon, 1 Feb 2016 10:58:02 +0000 (19:58 +0900)
committerinhonghan <inhong1.han@samsung.com>
Mon, 1 Feb 2016 10:59:03 +0000 (19:59 +0900)
Change-Id: I15e30a30f642942eb81c1134e7d9b68afbf38949
Signed-off-by: inhonghan <inhong1.han@samsung.com>
ism/extras/efl_wsc/isf_wsc_context.cpp

index b9be843..c555095 100644 (file)
@@ -1629,6 +1629,8 @@ Ecore_IMF_Autocapital_Type wsc_context_autocapital_type_get (weescim *ctx)
 
     if (ctx->content_hint & WL_TEXT_INPUT_CONTENT_HINT_AUTO_CAPITALIZATION)
         autocapital_type = ECORE_IMF_AUTOCAPITAL_TYPE_SENTENCE;
+    else if (ctx->content_hint & WL_TEXT_INPUT_CONTENT_HINT_WORD_CAPITALIZATION)
+        autocapital_type = ECORE_IMF_AUTOCAPITAL_TYPE_WORD;
     else if (ctx->content_hint & WL_TEXT_INPUT_CONTENT_HINT_UPPERCASE)
         autocapital_type = ECORE_IMF_AUTOCAPITAL_TYPE_ALLCHARACTER;
     else