discomfitor pushed a commit to branch enlightenment-0.20. http://git.enlightenment.org/core/enlightenment.git/commit/?id=b6cfd00993294c05d28fe947d420c82d87933ef9
commit b6cfd00993294c05d28fe947d420c82d87933ef9 Author: Mike Blumenkrantz <[email protected]> Date: Tue Jul 12 12:49:47 2016 -0400 match wl_wl output sizing in wl_x11 when running in an existing wm session global sizing policy++ --- src/modules/wl_x11/e_mod_main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/wl_x11/e_mod_main.c b/src/modules/wl_x11/e_mod_main.c index cf10875..54cdbbc 100644 --- a/src/modules/wl_x11/e_mod_main.c +++ b/src/modules/wl_x11/e_mod_main.c @@ -91,6 +91,8 @@ e_modapi_init(E_Module *m) if (!managed) e_comp_x_randr_screen_iface_set(); if (!e_comp_wl_init()) return NULL; + if (managed) + w = w * 2 / 3, h = h * 2 / 3; if (!e_comp_canvas_init(w, h)) return NULL; e_comp_wl_input_pointer_enabled_set(EINA_TRUE); --
