diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-11-11 11:30:27 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-11 11:30:27 -0500 |
commit | 101515eb0c0039e8f67b7d3c8269a8898d8760ac (patch) | |
tree | 458a3acb6db39a78d26b4ce38ea637aa21812e29 /include | |
parent | 80a1c340a9c8c8aac5fe4dd7bc1dc15b43fce0dc (diff) | |
parent | 12876932a948d7265745efaccafea509bdbaffe8 (diff) |
Merge pull request #3108 from RedSoxFan/workspace-output-improved
Allow multiple outputs for workspace output
Diffstat (limited to 'include')
-rw-r--r-- | include/sway/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/config.h b/include/sway/config.h index cd56c3dc..79c4359b 100644 --- a/include/sway/config.h +++ b/include/sway/config.h @@ -183,7 +183,7 @@ struct side_gaps { */ struct workspace_config { char *workspace; - char *output; + list_t *outputs; int gaps_inner; struct side_gaps gaps_outer; }; |