aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/xdg_shell.c
diff options
context:
space:
mode:
authorLibravatar Alexander Orzechowski <alex@ozal.ski>2023-11-22 15:11:12 -0500
committerLibravatar Kirill Primak <vyivel@eclair.cafe>2024-01-18 18:36:54 +0300
commit9da295c11f90dcfbf254ccf23b9124c87ccd8ddf (patch)
tree328cf15feeccd8bdc90f1205542857ab34afeaa2 /sway/desktop/xdg_shell.c
parentscene_graph: Port opacity and filter modes (diff)
downloadsway-9da295c11f90dcfbf254ccf23b9124c87ccd8ddf.tar.gz
sway-9da295c11f90dcfbf254ccf23b9124c87ccd8ddf.tar.zst
sway-9da295c11f90dcfbf254ccf23b9124c87ccd8ddf.zip
scene_graph: Implement toplevel clipping
Diffstat (limited to 'sway/desktop/xdg_shell.c')
-rw-r--r--sway/desktop/xdg_shell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/desktop/xdg_shell.c b/sway/desktop/xdg_shell.c
index 48b7b4c7..7cdd97c8 100644
--- a/sway/desktop/xdg_shell.c
+++ b/sway/desktop/xdg_shell.c
@@ -306,9 +306,9 @@ static void handle_commit(struct wl_listener *listener, void *data) {
306 view->geometry.height); 306 view->geometry.height);
307 } 307 }
308 transaction_commit_dirty_client(); 308 transaction_commit_dirty_client();
309 } else {
310 view_center_surface(view);
311 } 309 }
310
311 view_center_and_clip_surface(view);
312 } 312 }
313 313
314 if (view->container->node.instruction) { 314 if (view->container->node.instruction) {