From: WooHyun Jung <wh0705.jung@samsung.com>

Subject: [E-devel] [Patch] small patch for elm_pager.c

I felt strange with the following codes in elm_pager.c

Why it->content should be hidden after deleted ? 

Is it a bug ? 

I made a small patch for this



SVN revision: 56127
This commit is contained in:
WooHyun Jung 2011-01-15 08:39:33 +00:00 committed by Carsten Haitzler
parent 8d17a71e5b
commit 1c5b26784c
1 changed files with 1 additions and 1 deletions

View File

@ -222,8 +222,8 @@ _signal_hide_finished(void *data, Evas_Object *obj __UNUSED__, const char *emiss
edje_object_signal_emit(it->base, "elm,action,reset", "elm");
evas_object_smart_callback_call(obj2, "hide,finished", it->content);
edje_object_message_signal_process(it->base);
if (it->popme) evas_object_del(it->content);
evas_object_hide(it->content);
if (it->popme) evas_object_del(it->content);
_sizing_eval(obj2);
}