mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-02 09:01:38 -05:00
rootston: damage whole output when entering/leaving fullscreen
This commit is contained in:
parent
2a855e6282
commit
a7cba7d83f
3 changed files with 4 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue