devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=d5822fa6ee4f230f390b791b16892cfa0dc299e0

commit d5822fa6ee4f230f390b791b16892cfa0dc299e0
Author: Chris Michael <[email protected]>
Date:   Fri Aug 22 13:29:30 2014 -0400

    ecore-evas: Default wayland ecore_evas 'frames' off
    
    NB: There is something fishy going on with evas overdrawing the canvas
    onto the ecore_evas 'border frames'. Disable ecore_evas border frames
    until this can be looked into.
    
    Signed-off-by: Chris Michael <[email protected]>
---
 src/lib/ecore_evas/ecore_evas.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/ecore_evas/ecore_evas.c b/src/lib/ecore_evas/ecore_evas.c
index 16966f8..bb854f1 100644
--- a/src/lib/ecore_evas/ecore_evas.c
+++ b/src/lib/ecore_evas/ecore_evas.c
@@ -658,7 +658,7 @@ static Ecore_Evas *
 _ecore_evas_constructor_wayland_shm(int x, int y, int w, int h, const char 
*extra_options)
 {
    char *disp_name = NULL;
-   unsigned int frame = 1, parent = 0;
+   unsigned int frame = 0, parent = 0;
    Ecore_Evas *ee;
 
    _ecore_evas_parse_extra_options_str(extra_options, "display=", &disp_name);
@@ -674,7 +674,7 @@ static Ecore_Evas *
 _ecore_evas_constructor_wayland_egl(int x, int y, int w, int h, const char 
*extra_options)
 {
    char *disp_name = NULL;
-   unsigned int frame = 1, parent = 0;
+   unsigned int frame = 0, parent = 0;
    Ecore_Evas *ee;
 
    _ecore_evas_parse_extra_options_str(extra_options, "display=", &disp_name);

-- 


Reply via email to