What I want to do is:
// show result in Image Stack (a table, in fact) elm_table_clear(stack, true); for (int i=ipu_stack_length()-1; i>=0; i--) { image = elm_image_add(win); elm_image_resizable_set(image, 0, 0); evas_object_size_hint_min_set(image, 256, 256); // all the images are 256x256 evas_object_size_hint_padding_set(image, 10, 10, 10, 0); ppm = ipu_ppm_get(&ppm_size); // get the image from top of ipu's stack, in PPM format elm_image_memfile_set(image, ppm, ppm_size, "ppm", NULL); ipu_ppm_free(ppm); elm_table_pack(stack, image, 0, i, 1, 1); evas_object_show(image); ipu_ignore(); // pop the top of ipu's stack } But the table "flashes", then show the images. I don't want the "flash" when reset the content of the table. I've tried elm_win_norender_push() and elm_win_norender_pop(), but seems not working as expected. I've also tried creating a new table, then set it to the content of it's container, not work neither. -- Where there is a hacker, there is art. ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_d2d_feb _______________________________________________ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel