discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=d7c60da84f460754be8fab323b8403a2d1383603
commit d7c60da84f460754be8fab323b8403a2d1383603 Author: Mike Blumenkrantz <[email protected]> Date: Thu Jun 25 19:29:24 2015 -0400 correct e_comp->new_client count for overrides in x compositor --- src/bin/e_comp_x.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index 97a9c1d..5027885 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -210,6 +210,8 @@ _e_comp_x_client_new_helper(E_Client *ec) ec->take_focus = !starting; } ec->new_client ^= ec->override; + if (!ec->new_client) + e_comp->new_clients--; ec->w = ec->client.w = ec->comp_data->initial_attributes.w; ec->h = ec->client.h = ec->comp_data->initial_attributes.h; --
