From: Denis Dolzhenko Date: Thu, 17 Nov 2016 15:08:00 +0000 (+0200) Subject: Fixed: focus of MbeRecipientsView X-Git-Tag: submit/tizen_3.0/20161118.143808~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F58%2F98558%2F1;p=profile%2Fmobile%2Fapps%2Fnative%2Fmessage.git Fixed: focus of MbeRecipientsView Change-Id: Idaa2aeb57b96c3e074533255f9403d56ac58635e Signed-off-by: Denis Dolzhenko --- diff --git a/src/Common/View/src/MbeRecipientsView.cpp b/src/Common/View/src/MbeRecipientsView.cpp index 6989eddb..2589998b 100644 --- a/src/Common/View/src/MbeRecipientsView.cpp +++ b/src/Common/View/src/MbeRecipientsView.cpp @@ -25,10 +25,9 @@ MbeRecipientsView::MbeRecipientsView(Evas_Object *parent) , m_pChangedJob(nullptr) { setEo(elm_multibuttonentry_add(parent)); - elm_multibuttonentry_editable_set(getEo(), EINA_FALSE); - elm_multibuttonentry_expanded_set(getEo(), EINA_TRUE); - elm_object_focus_allow_set(getEo(), EINA_FALSE); - elm_object_tree_focus_allow_set(getEo(), EINA_TRUE); + elm_multibuttonentry_editable_set(getEo(), false); + elm_multibuttonentry_expanded_set(getEo(), true); + elm_object_tree_focus_allow_set(getEo(), false); addSmartCb("item,clicked", SMART_CALLBACK(MbeRecipientsView, onMbeItemClicked), this); addSmartCb("item,added", SMART_CALLBACK(MbeRecipientsView, onMbeChanged), this);