From e0d3b1671b3f94657d70223b51285ed287c882df Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 1 Nov 2020 00:02:33 +0100 Subject: New binary directory structure --- apps/wm.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'apps/wm.c') diff --git a/apps/wm.c b/apps/wm.c index c0e1da2..b3cb953 100644 --- a/apps/wm.c +++ b/apps/wm.c @@ -43,10 +43,11 @@ static struct context *new_context(struct context *ctx, u32 pid, int x, int y, u ctx->fb = malloc(height * ctx->pitch); memset(ctx->fb, 0, height * ctx->pitch); ctx->flags = flags; - if (!(flags & WF_RELATIVE)) + if (!(flags & WF_RELATIVE)) { context_count++; - if (context_count % 2 == 1) - MOUSE_SKIP++; + if (context_count % 2 == 1) + MOUSE_SKIP++; + } return ctx; } -- cgit v1.2.3