aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2021-02-12 23:27:08 +0100
committerFurkan Sahin <furkan-dev@proton.me>2021-02-12 23:27:08 +0100
commit04d6f1d56d4824b11e48bbe00f0491829db8a887 (patch)
tree82f194c897fe8fa4d69fb4d97b755dfd1dfd940a
parentf8d04d89b6b4da323acf336a20d358005c644986 (diff)
render: Use current instead of pending fullscreen
-rw-r--r--sway/desktop/render.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/render.c b/sway/desktop/render.c
index 3343fb31..0def0bac 100644
--- 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);