Merge pull request #3675 from RedSoxFan/fix-move-tiling-self

seatop_move_tiling: use tab/stack parent not self
This commit is contained in:
Drew DeVault 2019-02-14 00:50:44 +01:00 committed by GitHub
commit cc39bbdff3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);