From 3ec01f9c10fbfc61a777970407913e4e67b74215 Mon Sep 17 00:00:00 2001 From: fufesou Date: Tue, 26 Aug 2025 00:04:04 +0800 Subject: [PATCH] feat: advanced option, main window, always on top Signed-off-by: fufesou --- src/config.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/config.rs b/src/config.rs index d59c4054b..e8c7eea02 100644 --- a/src/config.rs +++ b/src/config.rs @@ -2509,6 +2509,7 @@ pub mod keys { pub const OPTION_ALLOW_HTTPS_21114: &str = "allow-https-21114"; pub const OPTION_ALLOW_HOSTNAME_AS_ID: &str = "allow-hostname-as-id"; pub const OPTION_HIDE_POWERED_BY_ME: &str = "hide-powered-by-me"; + pub const OPTION_MAIN_WINDOW_ALWAYS_ON_TOP: &str = "main-window-always-on-top"; // flutter local options pub const OPTION_FLUTTER_REMOTE_MENUBAR_STATE: &str = "remoteMenubarState"; @@ -2681,6 +2682,7 @@ pub mod keys { OPTION_ALLOW_HOSTNAME_AS_ID, OPTION_REGISTER_DEVICE, OPTION_HIDE_POWERED_BY_ME, + OPTION_MAIN_WINDOW_ALWAYS_ON_TOP, ]; }