Merge pull request #3195 from orestisf1993/issue-2993

Improve directional moving of fullscreen containers
This commit is contained in:
Ingo Bürk
2018-03-23 14:52:48 +01:00
committed by GitHub
2 changed files with 35 additions and 1 deletions

View File

@ -256,7 +256,13 @@ void tree_move(Con *con, int direction) {
return;
}
if (con->parent->type == CT_WORKSPACE && con_num_children(con->parent) == 1) {
if (con->fullscreen_mode == CF_GLOBAL) {
DLOG("Not moving fullscreen global container\n");
return;
}
if ((con->fullscreen_mode == CF_OUTPUT) ||
(con->parent->type == CT_WORKSPACE && con_num_children(con->parent) == 1)) {
/* This is the only con on this workspace */
move_to_output_directed(con, direction);
return;