Don't damage views if they're hidden by a fullscreen view.
This commit is contained in:
parent
c685ef081f
commit
a44d016e2b
|
@ -469,6 +469,12 @@ void output_damage_view(struct sway_output *output, struct sway_view *view,
|
|||
return;
|
||||
}
|
||||
|
||||
struct sway_container *workspace = container_parent(view->swayc,
|
||||
C_WORKSPACE);
|
||||
if (workspace->sway_workspace->fullscreen && !view->is_fullscreen) {
|
||||
return;
|
||||
}
|
||||
|
||||
struct damage_data data = {
|
||||
.output = output,
|
||||
.whole = whole,
|
||||
|
|
Loading…
Reference in a new issue