aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/transaction.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2019-01-27 18:06:50 -0500
committerLibravatar GitHub <noreply@github.com>2019-01-27 18:06:50 -0500
commit783fadab284c79c8e13625e5e2a2eefae02c75d3 (patch)
tree795c5c69a7fcfc9336115ac157a41b943190f206 /sway/desktop/transaction.c
parentMerge pull request #3519 from emersion/pointer-frame (diff)
parentImplement fullscreen global (diff)
downloadsway-783fadab284c79c8e13625e5e2a2eefae02c75d3.tar.gz
sway-783fadab284c79c8e13625e5e2a2eefae02c75d3.tar.zst
sway-783fadab284c79c8e13625e5e2a2eefae02c75d3.zip
Merge pull request #3423 from RyanDwyer/fullscreen-global
Implement fullscreen global
Diffstat (limited to 'sway/desktop/transaction.c')
-rw-r--r--sway/desktop/transaction.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/transaction.c b/sway/desktop/transaction.c
index 88a9b027..9155f0a1 100644
--- a/sway/desktop/transaction.c
+++ b/sway/desktop/transaction.c
@@ -132,7 +132,7 @@ static void copy_container_state(struct sway_container *container,
132 state->y = container->y; 132 state->y = container->y;
133 state->width = container->width; 133 state->width = container->width;
134 state->height = container->height; 134 state->height = container->height;
135 state->is_fullscreen = container->is_fullscreen; 135 state->fullscreen_mode = container->fullscreen_mode;
136 state->parent = container->parent; 136 state->parent = container->parent;
137 state->workspace = container->workspace; 137 state->workspace = container->workspace;
138 state->border = container->border; 138 state->border = container->border;