From 6a2c6261df130cccb5262eddf71d40b2fffcf8f9 Mon Sep 17 00:00:00 2001 From: Merlijn <32853531+ToxicMushroom@users.noreply.github.com> Date: Wed, 29 Oct 2025 07:10:38 +0100 Subject: Add support for custom modes and modelines. (#2479) * Implement custom modes and modelines Co-authored-by: ToxicMushroom <32853531+ToxicMushroom@users.noreply.github.com> * fixes * refactor mode and modeline kdl parsers. * add IPC parse checks * refactor: address feedback * fix: add missing > 0 refresh rate check * move things around * fixes * wiki fixes --------- Co-authored-by: Christian Meissl Co-authored-by: Ivan Molodetskikh --- src/backend/winit.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/backend/winit.rs') diff --git a/src/backend/winit.rs b/src/backend/winit.rs index ebec64c9..1fb4019a 100644 --- a/src/backend/winit.rs +++ b/src/backend/winit.rs @@ -83,6 +83,7 @@ impl Winit { is_preferred: true, }], current_mode: Some(0), + is_custom_mode: true, vrr_supported: false, vrr_enabled: false, logical: Some(logical_output(&output)), -- cgit