Elm: Shut up elm_frame, I am tired of hearing you spew noise about

your recalculations !! ;)



SVN revision: 67048
This commit is contained in:
Christopher Michael 2012-01-11 07:44:15 +00:00
parent 6a4ce67417
commit 9bd7022433
1 changed files with 3 additions and 3 deletions

View File

@ -197,7 +197,7 @@ _content_unset_hook(Evas_Object *obj, const char *part)
static void
_recalc(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
{
printf("recalc %3.3f\n", ecore_loop_time_get());
// printf("recalc %3.3f\n", ecore_loop_time_get());
_sizing_eval(data);
}
@ -206,7 +206,7 @@ _recalc_done(void *data, Evas_Object *obj __UNUSED__, const char *sig __UNUSED__
{
Widget_Data *wd = elm_widget_data_get(data);
if (!wd) return;
printf("recalc done %3.3f\n", ecore_loop_time_get());
// printf("recalc done %3.3f\n", ecore_loop_time_get());
evas_object_smart_callback_del(wd->frm, "recalc", _recalc);
wd->anim = EINA_FALSE;
_sizing_eval(data);
@ -220,7 +220,7 @@ _signal_click(void *data, Evas_Object *obj __UNUSED__, const char *sig __UNUSED_
if (wd->anim) return;
evas_object_smart_callback_call(data, SIG_CLICKED, NULL);
if (!wd->collapsible) return;
printf("recalc begin %3.3f\n", ecore_loop_time_get());
// printf("recalc begin %3.3f\n", ecore_loop_time_get());
evas_object_smart_callback_add(wd->frm, "recalc", _recalc, data);
edje_object_signal_emit(wd->frm, "elm,action,collapse", "elm");
wd->collapsed++;