diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2021-02-24 21:11:55 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2021-02-24 21:11:55 +0100 |
| commit | 391245451dc34b166d7912988e918eafc977b93f (patch) | |
| tree | 96c64c5bea9273f94f8a1f19e98540eeefc56f92 | |
| parent | 16e60b93f18b8fc16ffee3ca71b68b73bdc6e972 (diff) | |
container: Limit tiled focus to container geometry
container_at would maintain the current focus as long as a position was
over one of the container view's surfaces. If an oversized surface was
being clipped, this lead to weird focus behavior.
Instead, use view_container_at for this test, which intersects the
container box before looking at surfaces.
| -rw-r--r-- | sway/tree/container.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c index e22c5961..1b7b9dd0 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -395,7 +395,7 @@ struct sway_container *container_at(struct sway_workspace *workspace, } // Tiling (focused) if (focus && focus->view && !is_floating) { - if ((c = surface_at_view(focus, lx, ly, surface, sx, sy))) { + if ((c = view_container_at(&focus->node, lx, ly, surface, sx, sy))) { return c; } } |
