summaryrefslogtreecommitdiffstats
path: root/sway/commands/fullscreen.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/fullscreen.c')
-rw-r--r--sway/commands/fullscreen.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sway/commands/fullscreen.c b/sway/commands/fullscreen.c
index 3392a7f7..a5d30d0e 100644
--- a/sway/commands/fullscreen.c
+++ b/sway/commands/fullscreen.c
@@ -27,15 +27,15 @@ struct cmd_results *cmd_fullscreen(int argc, char **argv) {
27 } 27 }
28 28
29 // If in the scratchpad, operate on the highest container 29 // If in the scratchpad, operate on the highest container
30 if (container && !container->workspace) { 30 if (container && !container->pending.workspace) {
31 while (container->parent) { 31 while (container->pending.parent) {
32 container = container->parent; 32 container = container->pending.parent;
33 } 33 }
34 } 34 }
35 35
36 bool is_fullscreen = false; 36 bool is_fullscreen = false;
37 for (struct sway_container *curr = container; curr; curr = curr->parent) { 37 for (struct sway_container *curr = container; curr; curr = curr->pending.parent) {
38 if (curr->fullscreen_mode != FULLSCREEN_NONE) { 38 if (curr->pending.fullscreen_mode != FULLSCREEN_NONE) {
39 container = curr; 39 container = curr;
40 is_fullscreen = true; 40 is_fullscreen = true;
41 break; 41 break;