From f15bebd406b9ca62d56f49ec9542a9c631f73bbf Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Tue, 21 Aug 2012 10:33:15 +0000 Subject: [PATCH] Ecore_Evas: Default the wayland engines to actually draw the "simple" frame if the option has not been specified. This means that if we want a more complex frame (think elm windows), then we need to set this flag to 0. SVN revision: 75498 --- legacy/ecore/src/lib/ecore_evas/ecore_evas.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/ecore/src/lib/ecore_evas/ecore_evas.c b/legacy/ecore/src/lib/ecore_evas/ecore_evas.c index 0520192372..7a2ac9a720 100644 --- a/legacy/ecore/src/lib/ecore_evas/ecore_evas.c +++ b/legacy/ecore/src/lib/ecore_evas/ecore_evas.c @@ -606,7 +606,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 = 0, parent = 0; + unsigned int frame = 1, parent = 0; Ecore_Evas *ee; _ecore_evas_parse_extra_options_str(extra_options, "display=", &disp_name); @@ -624,7 +624,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 = 0, parent = 0; + unsigned int frame = 1, parent = 0; Ecore_Evas *ee; _ecore_evas_parse_extra_options_str(extra_options, "display=", &disp_name);