From: Taehyub Kim Date: Mon, 23 Apr 2018 06:26:27 +0000 (+0900) Subject: wearable/rotary_selector: item click event should not occur when selector button... X-Git-Tag: submit/tizen/20190424.060632~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9712a85990d4725ba71edb959ea8a6cca08b35d5;p=platform%2Fcore%2Fuifw%2Fefl-ext.git wearable/rotary_selector: item click event should not occur when selector button is long pressed Change-Id: I05aac03defd94548f943eea169ba36f025d4beef --- diff --git a/src/wearable/efl_extension_rotary_selector.c b/src/wearable/efl_extension_rotary_selector.c index 0804ffc..6020554 100644 --- a/src/wearable/efl_extension_rotary_selector.c +++ b/src/wearable/efl_extension_rotary_selector.c @@ -3043,7 +3043,7 @@ _selector_clicked_signal(void *data, Evas_Object *obj, const char *emission, con INF("called!!"); Eext_Rotary_Selector_Data *rsd = (Eext_Rotary_Selector_Data *)data; - if (rsd) + if (rsd && !rsd->editing) { evas_object_smart_callback_call(rsd->rotary_selector, "item,clicked", (void*)_item_get(rsd, rsd->selected_index)); }