aboutsummaryrefslogtreecommitdiff
path: root/include/config.h
diff options
context:
space:
mode:
authorChristoph Gysin <christoph.gysin@gmail.com>2015-11-29 23:17:42 +0200
committerChristoph Gysin <christoph.gysin@gmail.com>2015-11-29 23:17:55 +0200
commitae7ed795730398d50e6408575a1edfbd5c34bd3c (patch)
tree365d13bf0c0d8aae3aaec69bb6159ccd5cd91000 /include/config.h
parent82d464bb90af7fed57a36aacc2dce22994849bac (diff)
config: Store 'enabled' as int
Diffstat (limited to 'include/config.h')
-rw-r--r--include/config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/config.h b/include/config.h
index 9caadec8..631c8178 100644
--- a/include/config.h
+++ b/include/config.h
@@ -40,7 +40,7 @@ struct sway_mode {
*/
struct output_config {
char *name;
- bool enabled;
+ int enabled;
int width, height;
int x, y;
char *background;