ecore_imf : Set ECORE_IMF_INPUT_PANEL_LAYOUT_NORMAL as default layout in ecore_imf_context_add.

SVN revision: 67710
This commit is contained in:
Jihoon Kim 2012-02-06 08:05:58 +00:00
parent 0a709db9d2
commit 1d92d7dbe6
2 changed files with 8 additions and 0 deletions

View File

@ -468,3 +468,7 @@
2011-12-26 Christopher Michael (devilhorns)
* Add Ecore_X function to return the keycode from a given keyname.
2012-02-06 Jihoon Kim (jihoon)
* Set ECORE_IMF_INPUT_PANEL_LAYOUT_NORMAL as default layout in ecore_imf_context_add.

View File

@ -188,6 +188,10 @@ ecore_imf_context_add(const char *id)
* set on the immodule */
ecore_imf_context_input_panel_enabled_set(ctx, EINA_TRUE);
/* default input panel layout type is NORMAL type, so let's make sure it's
* set on the immodule */
ecore_imf_context_input_panel_layout_set(ctx, ECORE_IMF_INPUT_PANEL_LAYOUT_NORMAL);
/* default input_mode is ECORE_IMF_INPUT_MODE_FULL, so let's make sure it's
* set on the immodule */
ecore_imf_context_input_mode_set(ctx, ECORE_IMF_INPUT_MODE_FULL);