Fixed: focus of MbeRecipientsView 58/98558/1
authorDenis Dolzhenko <d.dolzhenko@samsung.com>
Thu, 17 Nov 2016 15:08:00 +0000 (17:08 +0200)
committerDenis Dolzhenko <d.dolzhenko@samsung.com>
Thu, 17 Nov 2016 15:09:36 +0000 (17:09 +0200)
Change-Id: Idaa2aeb57b96c3e074533255f9403d56ac58635e
Signed-off-by: Denis Dolzhenko <d.dolzhenko@samsung.com>
src/Common/View/src/MbeRecipientsView.cpp

index 6989eddb8ed70575738cf345db6c3392630e11cb..2589998bb6f22661d910d22bc3094241ede5fe11 100644 (file)
@@ -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);