diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-02-14 00:50:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-14 00:50:44 +0100 |
commit | cc39bbdff336cbad8892e79e8888ae483c457f70 (patch) | |
tree | fb4135e4bf815cc1f5a5771a93ac81aeb736cd1e /sway/input | |
parent | d168d65f2c0297bf5662c0f48f5f53705e54a376 (diff) | |
parent | 9b8249c350a499bb65e50741e8a45e5575ac7d18 (diff) |
Merge pull request #3675 from RedSoxFan/fix-move-tiling-self
seatop_move_tiling: use tab/stack parent not self
Diffstat (limited to 'sway/input')
-rw-r--r-- | sway/input/seatop_move_tiling.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/input/seatop_move_tiling.c b/sway/input/seatop_move_tiling.c index 8b541f80..422a4aa2 100644 --- a/sway/input/seatop_move_tiling.c +++ b/sway/input/seatop_move_tiling.c @@ -150,6 +150,9 @@ static void handle_motion_postthreshold(struct sway_seat *seat) { } if (edge) { e->target_node = node_get_parent(&con->node); + if (e->target_node == &e->con->node) { + e->target_node = node_get_parent(e->target_node); + } e->target_edge = edge; node_get_box(e->target_node, &e->drop_box); resize_box(&e->drop_box, edge, DROP_LAYOUT_BORDER); |