aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/input/seatop_move_tiling.c3
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) {
150 } 150 }
151 if (edge) { 151 if (edge) {
152 e->target_node = node_get_parent(&con->node); 152 e->target_node = node_get_parent(&con->node);
153 if (e->target_node == &e->con->node) {
154 e->target_node = node_get_parent(e->target_node);
155 }
153 e->target_edge = edge; 156 e->target_edge = edge;
154 node_get_box(e->target_node, &e->drop_box); 157 node_get_box(e->target_node, &e->drop_box);
155 resize_box(&e->drop_box, edge, DROP_LAYOUT_BORDER); 158 resize_box(&e->drop_box, edge, DROP_LAYOUT_BORDER);