Fix the abnormal IME display when rename BT device (TSAM-8258) 72/90772/2 accepted/tizen/3.0/ivi/20161011.065149 accepted/tizen/3.0/mobile/20161015.034252 accepted/tizen/3.0/tv/20161016.010038 accepted/tizen/3.0/wearable/20161015.084447 accepted/tizen/common/20161004.194401 accepted/tizen/ivi/20161005.080417 accepted/tizen/mobile/20161005.080334 accepted/tizen/tv/20161005.080348 accepted/tizen/wearable/20161005.080402 submit/tizen/20161004.103226 submit/tizen_3.0_ivi/20161010.000007 submit/tizen_3.0_mobile/20161015.000007 submit/tizen_3.0_tv/20161015.000006 submit/tizen_3.0_wearable/20161015.000006
authorDoHyun Pyun <dh79.pyun@samsung.com>
Tue, 4 Oct 2016 07:49:37 +0000 (16:49 +0900)
committerDoHyun Pyun <dh79.pyun@samsung.com>
Tue, 4 Oct 2016 07:51:40 +0000 (16:51 +0900)
Change-Id: Idf9a7bbac9307c34116207607607febcc62c497d
Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com>
packaging/ug-bluetooth-efl.spec
src/ui/bt-main-view.c
src/ui/bt-profile-view.c

index e1b5307..1b3a1ad 100644 (file)
@@ -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
index ee53d74..a0130b8 100644 (file)
@@ -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);
index f5a92d5..a905ae2 100644 (file)
@@ -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);