From a047b5ee4a2a67d30d93641ff86531d54b8e0879 Mon Sep 17 00:00:00 2001 From: Kenny Levinsen Date: Fri, 12 Feb 2021 23:22:51 +0100 Subject: container: Move pending state to state struct Pending state is currently inlined directly in the container struct, while the current state is in a state struct. A side-effect of this is that it is not immediately obvious that pending double-buffered state is accessed, nor is it obvious what state is double-buffered. Instead, use the state struct for both current and pending. --- sway/commands/fullscreen.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sway/commands/fullscreen.c') 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) { } // If in the scratchpad, operate on the highest container - if (container && !container->workspace) { - while (container->parent) { - container = container->parent; + if (container && !container->pending.workspace) { + while (container->pending.parent) { + container = container->pending.parent; } } bool is_fullscreen = false; - for (struct sway_container *curr = container; curr; curr = curr->parent) { - if (curr->fullscreen_mode != FULLSCREEN_NONE) { + for (struct sway_container *curr = container; curr; curr = curr->pending.parent) { + if (curr->pending.fullscreen_mode != FULLSCREEN_NONE) { container = curr; is_fullscreen = true; break; -- cgit v1.2.3