remove unnecessary todo item

As best I can tell this todo was intended to add workspace movement to
the given output with the `workspace <ws> output <op>` command, but i3
does not behave this way.
This commit is contained in:
Zandr Martin 2017-03-18 17:26:59 -04:00
parent 5c3d3184a3
commit baa17ec696
No known key found for this signature in database
GPG Key ID: AA2BB8EF77F7BBDC
1 changed files with 1 additions and 5 deletions

View File

@ -42,11 +42,7 @@ struct cmd_results *cmd_workspace(int argc, char **argv) {
}
sway_log(L_DEBUG, "Assigning workspace %s to output %s", wso->workspace, wso->output);
list_add(config->workspace_outputs, wso);
if (!config->reading) {
// TODO: Move workspace to output. (don't do so when reloading)
}
}
else {
} else {
if (config->reading || !config->active) {
return cmd_results_new(CMD_DEFER, "workspace", NULL);
}