discomfitor pushed a commit to branch enlightenment-0.20. http://git.enlightenment.org/core/enlightenment.git/commit/?id=3de65edc233fde919ea18f390e4a8c13cb9ee450
commit 3de65edc233fde919ea18f390e4a8c13cb9ee450 Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Wed May 11 15:32:36 2016 -0400 also check pixmap argb state when setting comp object alpha more accurate for wayland --- src/bin/e_comp_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index 3b533a6..cca66b6 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -316,7 +316,7 @@ _e_comp_object_updates_init(E_Comp_Object *cw) static void _e_comp_object_alpha_set(E_Comp_Object *cw) { - Eina_Bool alpha = cw->ec->argb; + Eina_Bool alpha = cw->ec->argb || e_pixmap_image_is_argb(cw->ec->pixmap); if (cw->blanked || cw->ns || cw->ec->shaped) alpha = EINA_TRUE; --