discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=ee4a861f90b53eb99d8715005579b085c729a828
commit ee4a861f90b53eb99d8715005579b085c729a828 Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Fri Feb 3 15:13:48 2017 -0500 use 1x1 for unsized (internal) clients this was a typo --- src/bin/e_comp_wl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index 14992ba..8299c62 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -1867,7 +1867,7 @@ _e_comp_wl_compositor_cb_surface_create(struct wl_client *client, struct wl_reso if (ec->new_client) e_comp->new_clients--; ec->new_client = 0; - if ((!ec->client.w) && (ec->client.h)) + if ((!ec->client.w) && (!ec->client.h)) ec->client.w = ec->client.h = 1; ec->comp_data->surface = res; ec->netwm.pid = pid; --