From 5ab3cd19d82b0968080a1cf733ec76c43e641af2 Mon Sep 17 00:00:00 2001 From: Denis Dolzhenko Date: Thu, 17 Nov 2016 17:08:00 +0200 Subject: [PATCH] Fixed: focus of MbeRecipientsView Change-Id: Idaa2aeb57b96c3e074533255f9403d56ac58635e Signed-off-by: Denis Dolzhenko --- src/Common/View/src/MbeRecipientsView.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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); -- 2.34.1