rootston: damage whole output when entering/leaving fullscreen

This commit is contained in:
emersion 2018-01-30 14:40:22 +01:00
parent 2a855e6282
commit a7cba7d83f
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
3 changed files with 4 additions and 1 deletions

View file

@ -243,6 +243,7 @@ void view_set_fullscreen(struct roots_view *view, bool fullscreen,
roots_output->fullscreen_view = view;
view->fullscreen_output = roots_output;
output_damage_whole(roots_output);
}
if (was_fullscreen && !fullscreen) {
@ -250,6 +251,7 @@ void view_set_fullscreen(struct roots_view *view, bool fullscreen,
view->saved.height);
view_rotate(view, view->saved.rotation);
output_damage_whole(view->fullscreen_output);
view->fullscreen_output->fullscreen_view = NULL;
view->fullscreen_output = NULL;
}