workaround for now :(

SVN revision: 52735
This commit is contained in:
Carsten Haitzler 2010-09-25 14:57:34 +00:00
parent 24b01d329c
commit 0b14b5b021
1 changed files with 8 additions and 0 deletions

View File

@ -615,4 +615,12 @@ elm_flip_go(Evas_Object *obj, Elm_Flip_Mode mode)
// force calc to contents are the right size before transition
evas_smart_objects_calculate(evas_object_evas_get(obj));
_flip(obj);
// FIXME: hack around evas rendering bug (only fix makes evas bitch-slow
evas_object_map_enable_set(wd->front.content, 0);
evas_object_map_enable_set(wd->back.content, 0);
evas_object_resize(wd->front.content, 0, 0);
evas_object_resize(wd->back.content, 0, 0);
evas_smart_objects_calculate(evas_object_evas_get(obj));
_configure(obj);
// FIXME: end hack
}