sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 35342d89a914f1bb72f482e20633f547c1206273
parent a047b5ee4a2a67d30d93641ff86531d54b8e0879
Author: Kenny Levinsen <kl@kl.wtf>
Date:   Fri, 12 Feb 2021 23:27:08 +0100

render: Use current instead of pending fullscreen

Diffstat:
Msway/desktop/render.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/desktop/render.c b/sway/desktop/render.c @@ -957,7 +957,7 @@ static void render_floating(struct sway_output *soutput, } for (int k = 0; k < ws->current.floating->length; ++k) { struct sway_container *floater = ws->current.floating->items[k]; - if (floater->pending.fullscreen_mode != FULLSCREEN_NONE) { + if (floater->current.fullscreen_mode != FULLSCREEN_NONE) { continue; } render_floating_container(soutput, damage, floater);