From: Godly Thekkethottiyil Alias Date: Thu, 6 Feb 2020 15:32:44 +0000 (+0530) Subject: [Scrollable] Go To Top Feature X-Git-Tag: submit/tizen/20200213.221652~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9348ad6f3181f2195724f754c91271cfe7eff93d;p=platform%2Fcore%2Fuifw%2Fefl-ext.git [Scrollable] Go To Top Feature [Model] Noblesse [BinType] N/A [Customer] N/A [Issue#] FWGOVERSEA-1775 [Request] UX [Occurrence Version] N/A [Problem] N/A [Cause & Measure] N/A [Checking Method] N/A [Team] (UIFW/EFL) [Developer] Godly T.Alias [Solution company] Samsung [Change Type] New Feature Change-Id: Id2bf699ccf6736cabdec0f62d2cae3180e348521 Signed-off-by: Godly Thekkethottiyil Alias --- diff --git a/src/wearable/circle/efl_extension_circle_object_scroller.c b/src/wearable/circle/efl_extension_circle_object_scroller.c index 42c73f1..223f760 100644 --- a/src/wearable/circle/efl_extension_circle_object_scroller.c +++ b/src/wearable/circle/efl_extension_circle_object_scroller.c @@ -1573,24 +1573,18 @@ eext_circle_object_scroller_gototop_enable_set(Evas_Object *obj, Eina_Bool enabl if (!obj) return; EEXT_CIRCLE_OBJECT_SCROLLER_SCROLL_IFACE_DATA_GET(obj, sid); - Evas_Object *edje_obj = elm_layout_edje_get(obj); if (enable) { - sid->is_gotop_shown = EINA_FALSE; sid->is_gotop_enabled = EINA_TRUE; sid->gototop_cb = func; - if (sid->gotop_clipper) evas_object_del(sid->gotop_clipper); - sid->gotop_clipper = NULL; } else { - if (sid->gotop_clipper) evas_object_del(sid->gotop_clipper); - sid->gotop_clipper = NULL; sid->is_gotop_enabled = EINA_FALSE; sid->gototop_cb = NULL; - sid->is_gotop_shown = EINA_FALSE; } + sid->is_gotop_shown = EINA_FALSE; } //