aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/xdg_shell_v6.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/xdg_shell_v6.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/xdg_shell_v6.c')
-rw-r--r--sway/desktop/xdg_shell_v6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/xdg_shell_v6.c b/sway/desktop/xdg_shell_v6.c
index f11c00b1..386e350e 100644
--- a/sway/desktop/xdg_shell_v6.c
+++ b/sway/desktop/xdg_shell_v6.c
@@ -342,7 +342,7 @@ static void handle_request_fullscreen(struct wl_listener *listener, void *data)
342 342
343 container_set_fullscreen(view->container, e->fullscreen); 343 container_set_fullscreen(view->container, e->fullscreen);
344 344
345 arrange_workspace(view->container->workspace); 345 arrange_root();
346 transaction_commit_dirty(); 346 transaction_commit_dirty();
347} 347}
348 348