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
This commit is contained in:
Christopher Michael 2012-08-21 10:33:15 +00:00
parent 593f82e316
commit f15bebd406
1 changed files with 2 additions and 2 deletions

View File

@ -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);