discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=8491e11570151d38054d2c677ca571675b02a7ea

commit 8491e11570151d38054d2c677ca571675b02a7ea
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Mon Sep 21 15:16:30 2015 -0400

    always set alpha for internal wins
    
    due to the presence of color classes on internal windows, e must
    ensure that users who set translucent colors for window base objects
    get transparency as expected on those parts of the window. it's impossible
    to determine in advance whether alpha is needed, so it's best to just
    set alpha in all cases
    
    fix T2050
---
 src/bin/e_win.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/bin/e_win.c b/src/bin/e_win.c
index 96c8fb2..f783bce 100644
--- a/src/bin/e_win.c
+++ b/src/bin/e_win.c
@@ -479,6 +479,7 @@ e_elm_win_add(Evas_Object *parent, const char *name, 
Elm_Win_Type type)
    e_util_env_set("ELM_ACCEL", "none");
    o = elm_win_add(parent, name, type);
    e_util_env_set("ELM_ACCEL", eng);
+   elm_win_alpha_set(o, 1);
    free(eng);
    return o;
 }

-- 


Reply via email to