diff options
author | Ryan Dwyer <[email protected]> | 2018-09-16 22:01:54 +1000 |
---|---|---|
committer | Ryan Dwyer <[email protected]> | 2018-09-16 22:01:54 +1000 |
commit | f6e218a64371b02afdf6b7812a52d70b13635ef3 (patch) | |
tree | 7348bf536a2bfbdedabe28d00a3c49b1bfcb559a /sway/commands/move.c | |
parent | 48bc15e758c37e73f3eb6ae76f4ad758148dbfb1 (diff) |
Rename seat_get_active_child to seat_get_active_tiling_child
Also renames container to con in one function to prevent ugly line
wrapping.
Diffstat (limited to 'sway/commands/move.c')
-rw-r--r-- | sway/commands/move.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/move.c b/sway/commands/move.c index 8f0ef230..42b305d1 100644 --- a/sway/commands/move.c +++ b/sway/commands/move.c @@ -149,7 +149,7 @@ static void container_move_to_container_from_direction( } wlr_log(WLR_DEBUG, "Reparenting container (perpendicular)"); - struct sway_node *focus_inactive = seat_get_active_child( + struct sway_node *focus_inactive = seat_get_active_tiling_child( config->handler_context.seat, &destination->node); if (!focus_inactive || focus_inactive == &destination->node) { // The container has no children |