[access][button] remove unnecessary signal emit
authorShinwoo Kim <cinoo.kim@samsung.com>
Fri, 14 Jun 2013 11:58:48 +0000 (20:58 +0900)
committerSungho Kwak <sungho1.kwak@samsung.com>
Thu, 20 Jun 2013 12:32:34 +0000 (21:32 +0900)
Change-Id: Ib06d231d4ab72fb1f1a51c8f394920791d5f7d14

src/lib/elm_button.c

index 6ea64fe..9a96f9c 100644 (file)
@@ -80,10 +80,7 @@ _elm_button_smart_activate(Evas_Object *obj, Elm_Activate act)
 
    if (!elm_widget_disabled_get(obj) &&
        !evas_object_freeze_events_get(obj))
-     {
-        evas_object_smart_callback_call(obj, SIG_CLICKED, NULL);
-        elm_layout_signal_emit(obj, "elm,anim,activate", "elm");
-     }
+     evas_object_smart_callback_call(obj, SIG_CLICKED, NULL);
 
    return EINA_TRUE;
 }