Merge pull request #3254 from orestisf1993/issue-555

Multiple assignments of workspaces to outputs (#555)
This commit is contained in:
Ingo Bürk
2018-07-12 16:18:13 +02:00
committed by GitHub
11 changed files with 246 additions and 69 deletions

View File

@ -2019,6 +2019,9 @@ void cmd_rename_workspace(I3_CMD, const char *old_name, const char *new_name) {
LOG("Could not get output named \"%s\"\n", assignment->output);
continue;
}
if (!output_triggers_assignment(target_output, assignment)) {
continue;
}
workspace_move_to_output(workspace, target_output);
break;