There was a bug that the keyboard effect didn't run.
This was because the effect object set the evas_map with direct render set.
So, we changed code not to set direct render to the Evas_Map of the effect object.
FYI,
if the direct render is set, Evas_Map is applied only to the image object among smart member objects.
So, only the image objects are rendered and another objects are not rendered.
Change-Id: I675f37f3ff9da036eaf3288e056a34fc385a5999
return;
}
- map = e_map_new();
+ map = e_map_new_with_direct_render(EINA_FALSE);
EINA_SAFETY_ON_NULL_RETURN(map);
e_pixmap_size_get(ec->pixmap, &bw, &bh);