aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/output.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/output.h')
-rw-r--r--include/sway/output.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sway/output.h b/include/sway/output.h
index cabb4b55..f27f6344 100644
--- a/include/sway/output.h
+++ b/include/sway/output.h
@@ -36,7 +36,7 @@ struct sway_output {
36 // last applied mode when the output is DPMS'ed 36 // last applied mode when the output is DPMS'ed
37 struct wlr_output_mode *current_mode; 37 struct wlr_output_mode *current_mode;
38 38
39 bool enabled, configured; 39 bool enabling, enabled;
40 list_t *workspaces; 40 list_t *workspaces;
41 41
42 struct sway_output_state current; 42 struct sway_output_state current;
@@ -98,7 +98,7 @@ struct sway_output *all_output_by_name_or_id(const char *name_or_id);
98 98
99void output_sort_workspaces(struct sway_output *output); 99void output_sort_workspaces(struct sway_output *output);
100 100
101void output_configure(struct sway_output *output); 101void output_enable(struct sway_output *output);
102 102
103void output_disable(struct sway_output *output); 103void output_disable(struct sway_output *output);
104 104