aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-12-18 18:52:14 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-12-18 18:52:51 -0500
commit7647762bab3b625bba6004de761454a2ae4edc5d (patch)
tree3c3f83675c8ca1612c13d147ecb52aaf19381f37 /include
parentMerge pull request #360 from sce/fix_arrange_windows (diff)
downloadsway-7647762bab3b625bba6004de761454a2ae4edc5d.tar.gz
sway-7647762bab3b625bba6004de761454a2ae4edc5d.tar.zst
sway-7647762bab3b625bba6004de761454a2ae4edc5d.zip
Fix default workspace name generation
This fixes the issue where workspace 10 ends up being the default.
Diffstat (limited to 'include')
-rw-r--r--include/config.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h
index e6fc9f28..b97acb57 100644
--- a/include/config.h
+++ b/include/config.h
@@ -21,6 +21,7 @@ struct sway_variable {
21 * A key binding and an associated command. 21 * A key binding and an associated command.
22 */ 22 */
23struct sway_binding { 23struct sway_binding {
24 int order;
24 list_t *keys; 25 list_t *keys;
25 uint32_t modifiers; 26 uint32_t modifiers;
26 char *command; 27 char *command;