ecore-evas: Default wayland ecore_evas 'frames' off
authorChris Michael <cp.michael@samsung.com>
Fri, 22 Aug 2014 17:29:30 +0000 (13:29 -0400)
committerChris Michael <cp.michael@samsung.com>
Fri, 22 Aug 2014 17:32:38 +0000 (13:32 -0400)
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 <cp.michael@samsung.com>
src/lib/ecore_evas/ecore_evas.c

index 16966f8..bb854f1 100644 (file)
@@ -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);