aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2017-03-08 14:35:11 -0500
committerLibravatar GitHub <noreply@github.com>2017-03-08 14:35:11 -0500
commitdc33c2cc1dc0761dcdb2270bd2de0b52000874fe (patch)
treec1dc71ec38be37fd8dfbd0661884e66330a683e2 /sway/commands
parentUpdate unsupported packages link in readme (diff)
parentfix workspace output assignment (diff)
downloadsway-dc33c2cc1dc0761dcdb2270bd2de0b52000874fe.tar.gz
sway-dc33c2cc1dc0761dcdb2270bd2de0b52000874fe.tar.zst
sway-dc33c2cc1dc0761dcdb2270bd2de0b52000874fe.zip
Merge pull request #1105 from zandrmartin/fix-workspace-output-assignment
fix workspace output assignment
Diffstat (limited to 'sway/commands')
-rw-r--r--sway/commands/workspace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/workspace.c b/sway/commands/workspace.c
index 7db1f332..b49a3a69 100644
--- a/sway/commands/workspace.c
+++ b/sway/commands/workspace.c
@@ -31,7 +31,7 @@ struct cmd_results *cmd_workspace(int argc, char **argv) {
31 "Unable to allocate workspace output"); 31 "Unable to allocate workspace output");
32 } 32 }
33 wso->workspace = join_args(argv, argc - 2); 33 wso->workspace = join_args(argv, argc - 2);
34 wso->output = strdup(argv[output_location]); 34 wso->output = strdup(argv[output_location + 1]);
35 int i = -1; 35 int i = -1;
36 if ((i = list_seq_find(config->workspace_outputs, workspace_output_cmp_workspace, wso)) != -1) { 36 if ((i = list_seq_find(config->workspace_outputs, workspace_output_cmp_workspace, wso)) != -1) {
37 struct workspace_output *old = config->workspace_outputs->items[i]; 37 struct workspace_output *old = config->workspace_outputs->items[i];