Skip to content

Commit

Permalink
#148 fix interaction with auto_balance
Browse files Browse the repository at this point in the history
  • Loading branch information
koekeishiya committed Sep 22, 2022
1 parent a53929f commit 88eabee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/window_manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -1587,7 +1587,7 @@ enum window_op_error window_manager_warp_window(struct space_manager *sm, struct
window_node_capture_windows(a_node_rm, &window_list);
}

if (a_node_rm != a_node_add->parent) {
if (a_node_rm != a_node_add && a_node_rm != a_node_add->parent) {
window_node_capture_windows(a_node_add, &window_list);
}

Expand Down

0 comments on commit 88eabee

Please sign in to comment.