aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway')
-rw-r--r--include/sway/config.h2
-rw-r--r--include/sway/output.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 978606a6..8215ff59 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -568,7 +568,7 @@ struct output_config *new_output_config(const char *name);
568 568
569void merge_output_config(struct output_config *dst, struct output_config *src); 569void merge_output_config(struct output_config *dst, struct output_config *src);
570 570
571void apply_output_config(struct output_config *oc, struct sway_output *output); 571bool apply_output_config(struct output_config *oc, struct sway_output *output);
572 572
573struct output_config *store_output_config(struct output_config *oc); 573struct output_config *store_output_config(struct output_config *oc);
574 574
diff --git a/include/sway/output.h b/include/sway/output.h
index 7279187d..9ebdb6c1 100644
--- a/include/sway/output.h
+++ b/include/sway/output.h
@@ -31,7 +31,7 @@ struct sway_output {
31 int lx, ly; 31 int lx, ly;
32 int width, height; 32 int width, height;
33 33
34 bool enabled; 34 bool enabled, configured;
35 list_t *workspaces; 35 list_t *workspaces;
36 36
37 struct sway_output_state current; 37 struct sway_output_state current;