diff options
Diffstat (limited to 'apps/wm.c')
-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); } } |