diff options
author | emersion <contact@emersion.fr> | 2018-05-28 09:16:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-28 09:16:33 +0100 |
commit | 9d1049ae8d25eb78eb94dcf68aadad5eef6e4be1 (patch) | |
tree | c7d20de9d9a46293d7409d624372abf6f796e400 /sway/input | |
parent | cc1fc3b4a656a544254a80cf32a48d826e7946b2 (diff) | |
parent | 7c7d24600b3db2675b691ae6345ef3fefab03dbd (diff) | |
download | sway-9d1049ae8d25eb78eb94dcf68aadad5eef6e4be1.tar.xz |
Merge pull request #2059 from RyanDwyer/ancestor-typo
Fix ancestor typos
Diffstat (limited to 'sway/input')
-rw-r--r-- | sway/input/seat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c index 6cfbe8d4..0295212c 100644 --- a/sway/input/seat.c +++ b/sway/input/seat.c @@ -542,7 +542,7 @@ void seat_set_focus_warp(struct sway_seat *seat, return; } - // put all the anscestors of this container on top of the focus stack + // put all the ancestors of this container on top of the focus stack struct sway_seat_container *parent = seat_container_from_container(seat, container->parent); while (parent) { |