summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar minus <minus@mnus.de>2018-08-02 23:19:01 +0200
committerLibravatar minus <minus@mnus.de>2018-08-02 23:19:01 +0200
commite72f86784c6e2750668b3361269ded4d08d94ead (patch)
tree14d2ec9a20a1b0f20852cb3e6970324c281d15f6
parentMerge pull request #2407 from RyanDwyer/fix-popups-v3 (diff)
downloadsway-e72f86784c6e2750668b3361269ded4d08d94ead.tar.gz
sway-e72f86784c6e2750668b3361269ded4d08d94ead.tar.zst
sway-e72f86784c6e2750668b3361269ded4d08d94ead.zip
Fix crash on mouse motion on fullscreen container
container_at expects a workspace, not the fullscreened container. Fixes #2409
-rw-r--r--sway/input/cursor.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index 79f6ec46..99858d93 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -99,8 +99,7 @@ static struct sway_container *container_at_coords(
99 return ws; 99 return ws;
100 } 100 }
101 if (ws->sway_workspace->fullscreen) { 101 if (ws->sway_workspace->fullscreen) {
102 return container_at(ws->sway_workspace->fullscreen, lx, ly, 102 return container_at(ws, lx, ly, surface, sx, sy);
103 surface, sx, sy);
104 } 103 }
105 if ((*surface = layer_surface_at(output, 104 if ((*surface = layer_surface_at(output,
106 &output->layers[ZWLR_LAYER_SHELL_V1_LAYER_TOP], 105 &output->layers[ZWLR_LAYER_SHELL_V1_LAYER_TOP],