Skip to content

Commit

Permalink
Fixed the multiple window movement issue from #5382
Browse files Browse the repository at this point in the history
  • Loading branch information
slyshot committed Jun 1, 2023
1 parent a958701 commit 3904994
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions release-notes/bugfixes/3-moving-multiple
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed the multiple window movement issue from #5382
4 changes: 2 additions & 2 deletions src/move.c
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,8 @@ void tree_move(Con *con, direction_t direction) {
/* 1: get the first parent with the same orientation */

if (con->type == CT_WORKSPACE) {
DLOG("Not moving workspace\n");
return;
con_set_layout(con, con->layout);
con = TAILQ_FIRST(&(con->nodes_head));
}

if (con->fullscreen_mode == CF_GLOBAL) {
Expand Down

0 comments on commit 3904994

Please sign in to comment.