aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2020-09-15 18:32:49 +0200
committerMarvin Borner2020-09-15 18:32:49 +0200
commitc04947731537a722b7efe94ea0d7e56cbf21bf57 (patch)
treea18fcc22fcdb36e22ff5ed4a1b11dc075e127784 /apps
parent185af2c969c5d90ebcf7948e3b9fd8695b78256f (diff)
Added window focus z-index
Diffstat (limited to 'apps')
-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);
}
}