diff options
author | Simon Ser <contact@emersion.fr> | 2022-06-23 21:03:32 +0200 |
---|---|---|
committer | Kirill Primak <vyivel@eclair.cafe> | 2022-07-04 21:58:24 +0300 |
commit | b69d637f7a34e239e48a4267ae94a5e7087b5834 (patch) | |
tree | 63e33a9a15a08c5ebe9bf68183a10bad86997ce7 /include/sway/output.h | |
parent | 798e3c8858fdddb0e548d649cc61b6777565de98 (diff) |
Remove internal references to DPMS
While at it, use an int for the config field, just like we do for
all other fields.
Diffstat (limited to 'include/sway/output.h')
-rw-r--r-- | include/sway/output.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/output.h b/include/sway/output.h index 26b9709f..6d8319bf 100644 --- a/include/sway/output.h +++ b/include/sway/output.h @@ -32,7 +32,7 @@ struct sway_output { int width, height; // transformed buffer size enum wl_output_subpixel detected_subpixel; enum scale_filter_mode scale_filter; - // last applied mode when the output is DPMS'ed + // last applied mode when the output is powered off struct wlr_output_mode *current_mode; bool enabling, enabled; |