From c04947731537a722b7efe94ea0d7e56cbf21bf57 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 15 Sep 2020 18:32:49 +0200 Subject: Added window focus z-index --- apps/wm.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'apps') 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); } } -- cgit v1.2.3