aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/container.c
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-08-22 08:23:29 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-08-22 08:23:29 +1000
commite81c26fab910505719745f5eb7060457fd7ba7b0 (patch)
tree670e48ba35f74d56dcd593ac8edca2341a1ca200 /sway/tree/container.c
parentMerge pull request #2503 from RyanDwyer/use-wlr-edges (diff)
downloadsway-e81c26fab910505719745f5eb7060457fd7ba7b0.tar.gz
sway-e81c26fab910505719745f5eb7060457fd7ba7b0.tar.zst
sway-e81c26fab910505719745f5eb7060457fd7ba7b0.zip
Fix sending fullscreen event to view
Fixes #2504
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r--sway/tree/container.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c
index 6ea0cc94..a8c6e667 100644
--- a/sway/tree/container.c
+++ b/sway/tree/container.c
@@ -1201,6 +1201,7 @@ void container_set_fullscreen(struct sway_container *container, bool enable) {
1201 container_set_fullscreen(workspace->sway_workspace->fullscreen, false); 1201 container_set_fullscreen(workspace->sway_workspace->fullscreen, false);
1202 } 1202 }
1203 1203
1204 set_fullscreen_iterator(container, &enable);
1204 container_for_each_child(container, set_fullscreen_iterator, &enable); 1205 container_for_each_child(container, set_fullscreen_iterator, &enable);
1205 1206
1206 container->is_fullscreen = enable; 1207 container->is_fullscreen = enable;