Merge pull request #2004 from Airblader/bug-2003
Fix moving windows to a marked workspace by mark.
This commit is contained in:
commit
fccf83294a
|
@ -1020,6 +1020,12 @@ bool con_move_to_mark(Con *con, const char *mark) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (con->type == CT_WORKSPACE) {
|
||||||
|
DLOG("target container is a workspace, simply moving the container there.\n");
|
||||||
|
con_move_to_workspace(con, target, true, false, false);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
/* For split containers, we use the currently focused container within it.
|
/* For split containers, we use the currently focused container within it.
|
||||||
* This allows setting marks on, e.g., tabbed containers which will move
|
* This allows setting marks on, e.g., tabbed containers which will move
|
||||||
* con to a new tab behind the focused tab. */
|
* con to a new tab behind the focused tab. */
|
||||||
|
|
Loading…
Reference in New Issue