aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-08-03 09:47:54 +0100
committerLibravatar GitHub <noreply@github.com>2018-08-03 09:47:54 +0100
commit16c1e21f26ad47fb3ecfee994b19c5215734a543 (patch)
tree8c9251aeeedcfdd86381665e412c38b64a90d052 /include
parentMerge pull request #2413 from RyanDwyer/dont-move-empty-workspace (diff)
parentFix crash when moving cursor over a fullscreen split container (diff)
downloadsway-16c1e21f26ad47fb3ecfee994b19c5215734a543.tar.gz
sway-16c1e21f26ad47fb3ecfee994b19c5215734a543.tar.zst
sway-16c1e21f26ad47fb3ecfee994b19c5215734a543.zip
Merge pull request #2415 from RyanDwyer/fix-fullscreen-container-crash
Fix crash when moving cursor over a fullscreen split container
Diffstat (limited to 'include')
-rw-r--r--include/sway/tree/container.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index c3942e9e..44ff9f7d 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -234,9 +234,9 @@ struct sway_container *container_at(struct sway_container *workspace,
234 double lx, double ly, struct wlr_surface **surface, 234 double lx, double ly, struct wlr_surface **surface,
235 double *sx, double *sy); 235 double *sx, double *sy);
236 236
237struct sway_container *container_at_view(struct sway_container *view, 237struct sway_container *tiling_container_at(
238 double lx, double ly, struct wlr_surface **surface, 238 struct sway_container *con, double lx, double ly,
239 double *sx, double *sy); 239 struct wlr_surface **surface, double *sx, double *sy);
240 240
241/** 241/**
242 * Apply the function for each descendant of the container breadth first. 242 * Apply the function for each descendant of the container breadth first.