aboutsummaryrefslogtreecommitdiff
path: root/apps/wm.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/wm.c')
-rw-r--r--apps/wm.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/wm.c b/apps/wm.c
index 954ec4e..ed1a4dd 100644
--- a/apps/wm.c
+++ b/apps/wm.c
@@ -74,13 +74,15 @@ static void redraw_all()
struct node *iterator = contexts->head;
while (iterator != NULL) {
struct context *ctx = iterator->data;
- if (ctx != focused && !(ctx->flags & WF_RELATIVE))
+ if (ctx != focused && !(ctx->flags & WF_RELATIVE)) {
gfx_ctx_on_ctx(&exchange, ctx, ctx->x, ctx->y);
+ }
iterator = iterator->next;
}
- if (focused)
+ if (focused) {
gfx_ctx_on_ctx(&exchange, focused, focused->x, focused->y);
+ }
memcpy(direct.fb, exchange.fb, exchange.pitch * exchange.height);
}