aboutsummaryrefslogtreecommitdiff
path: root/apps/wm.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/wm.c')
-rw-r--r--apps/wm.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/wm.c b/apps/wm.c
index de9a1d7..df58e10 100644
--- a/apps/wm.c
+++ b/apps/wm.c
@@ -59,8 +59,13 @@ static void redraw_all()
struct node *iterator = windows->head;
do {
struct window *win = iterator->data;
- gui_win_on_win(&exchange, win, win->x, win->y);
+ if (win != focused)
+ gui_win_on_win(&exchange, win, win->x, win->y);
} while ((iterator = iterator->next) != NULL);
+
+ if (focused)
+ gui_win_on_win(&exchange, focused, focused->x, focused->y);
+
memcpy(direct.fb, exchange.fb, exchange.pitch * exchange.height);
}
}