diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-09-10 21:00:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-10 21:00:39 -0400 |
commit | 822b45f4836c9a22af5a283e2aea6e4ecd514c22 (patch) | |
tree | 8cf1710d23edfe1da01da72338197b348288922d /sway/tree/container.c | |
parent | 024b9d85ea4cd51d803317c64e46dac659c9f7ec (diff) | |
parent | 097ed036477b775624593ac95fdaef12c36ff306 (diff) | |
download | sway-822b45f4836c9a22af5a283e2aea6e4ecd514c22.tar.xz |
Merge pull request #2617 from wmww/cursor-enter-on-focus-change
Give windows pointer focus immediately
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r-- | sway/tree/container.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c index ccd79f0e..0a69f8d5 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -218,7 +218,7 @@ static struct sway_container *container_at_tabbed(struct sway_node *parent, // Surfaces struct sway_node *current = seat_get_active_child(seat, parent); - return tiling_container_at(current, lx, ly, surface, sx, sy); + return current ? tiling_container_at(current, lx, ly, surface, sx, sy) : NULL; } /** @@ -246,7 +246,7 @@ static struct sway_container *container_at_stacked(struct sway_node *parent, // Surfaces struct sway_node *current = seat_get_active_child(seat, parent); - return tiling_container_at(current, lx, ly, surface, sx, sy); + return current ? tiling_container_at(current, lx, ly, surface, sx, sy) : NULL; } /** |