diff options
author | Marvin Borner | 2020-09-15 18:32:49 +0200 |
---|---|---|
committer | Marvin Borner | 2020-09-15 18:32:49 +0200 |
commit | c04947731537a722b7efe94ea0d7e56cbf21bf57 (patch) | |
tree | a18fcc22fcdb36e22ff5ed4a1b11dc075e127784 /apps | |
parent | 185af2c969c5d90ebcf7948e3b9fd8695b78256f (diff) |
Added window focus z-index
Diffstat (limited to 'apps')
-rw-r--r-- | apps/wm.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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); } } |