From 2a35874424e270a2b550acca78fdad20c59a027e Mon Sep 17 00:00:00 2001 From: 21pages Date: Wed, 12 Mar 2025 11:50:11 +0800 Subject: [PATCH] option `allow-d3d-render` Signed-off-by: 21pages --- src/config.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/config.rs b/src/config.rs index a542309..ce2c75e 100644 --- a/src/config.rs +++ b/src/config.rs @@ -2304,6 +2304,7 @@ pub mod keys { pub const OPTION_ENABLE_OPEN_NEW_CONNECTIONS_IN_TABS: &str = "enable-open-new-connections-in-tabs"; pub const OPTION_TEXTURE_RENDER: &str = "use-texture-render"; + pub const OPTION_ALLOW_D3D_RENDER: &str = "allow-d3d-render"; pub const OPTION_ENABLE_CHECK_UPDATE: &str = "enable-check-update"; pub const OPTION_SYNC_AB_WITH_RECENT_SESSIONS: &str = "sync-ab-with-recent-sessions"; pub const OPTION_SYNC_AB_TAGS: &str = "sync-ab-tags"; @@ -2433,6 +2434,7 @@ pub mod keys { OPTION_ENABLE_CONFIRM_CLOSING_TABS, OPTION_ENABLE_OPEN_NEW_CONNECTIONS_IN_TABS, OPTION_TEXTURE_RENDER, + OPTION_ALLOW_D3D_RENDER, OPTION_SYNC_AB_WITH_RECENT_SESSIONS, OPTION_SYNC_AB_TAGS, OPTION_FILTER_AB_BY_INTERSECTION,