From: DoHyun Pyun Date: Tue, 4 Oct 2016 07:49:37 +0000 (+0900) Subject: Fix the abnormal IME display when rename BT device (TSAM-8258) X-Git-Tag: accepted/tizen/3.0/ivi/20161011.065149^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F72%2F90772%2F2;p=apps%2Fnative%2Fug-bluetooth-efl.git Fix the abnormal IME display when rename BT device (TSAM-8258) Change-Id: Idf9a7bbac9307c34116207607607febcc62c497d Signed-off-by: DoHyun Pyun --- diff --git a/packaging/ug-bluetooth-efl.spec b/packaging/ug-bluetooth-efl.spec index e1b5307..1b3a1ad 100644 --- a/packaging/ug-bluetooth-efl.spec +++ b/packaging/ug-bluetooth-efl.spec @@ -4,7 +4,7 @@ Name: ug-bluetooth-efl Summary: UI gadget about the bluetooth -Version: 0.3.2 +Version: 0.3.3 Release: 1 Group: TO_BE/FILLED_IN License: Flora-1.1 diff --git a/src/ui/bt-main-view.c b/src/ui/bt-main-view.c index ee53d74..a0130b8 100644 --- a/src/ui/bt-main-view.c +++ b/src/ui/bt-main-view.c @@ -651,6 +651,9 @@ static Evas_Object *__bt_main_rename_entry_icon_get( elm_entry_filter_limit_size, &limit_filter_data); elm_entry_cnp_mode_set(entry, ELM_CNP_MODE_PLAINTEXT); + elm_entry_input_panel_layout_set(entry, ELM_INPUT_PANEL_LAYOUT_NORMAL); + elm_entry_prediction_allow_set(entry, EINA_FALSE); + elm_entry_autocapital_type_set(entry, ELM_AUTOCAPITAL_TYPE_NONE); evas_object_smart_callback_add(entry, "maxlength,reached", _bt_util_max_len_reached_cb, ugd); diff --git a/src/ui/bt-profile-view.c b/src/ui/bt-profile-view.c index f5a92d5..a905ae2 100644 --- a/src/ui/bt-profile-view.c +++ b/src/ui/bt-profile-view.c @@ -332,6 +332,9 @@ static Evas_Object *__bt_profile_rename_entry_icon_get( elm_entry_filter_limit_size, &limit_filter_data); elm_entry_cnp_mode_set(entry, ELM_CNP_MODE_PLAINTEXT); + elm_entry_input_panel_layout_set(entry, ELM_INPUT_PANEL_LAYOUT_NORMAL); + elm_entry_prediction_allow_set(entry, EINA_FALSE); + elm_entry_autocapital_type_set(entry, ELM_AUTOCAPITAL_TYPE_NONE); evas_object_smart_callback_add(entry, "maxlength,reached", _bt_util_max_len_reached_cb, ugd);