From 44462174cf5e36456c8c2998f11e036ebd320aa4 Mon Sep 17 00:00:00 2001 From: fufesou Date: Mon, 17 Nov 2025 15:48:20 +0800 Subject: [PATCH] Refact: Remove unused code to avoid confusion. Signed-off-by: fufesou --- src/config.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/config.rs b/src/config.rs index 5166749..84456f4 100644 --- a/src/config.rs +++ b/src/config.rs @@ -90,15 +90,12 @@ pub const LINK_DOCS_HOME: &str = "https://rustdesk.com/docs/en/"; pub const LINK_DOCS_X11_REQUIRED: &str = "https://rustdesk.com/docs/en/manual/linux/#x11-required"; pub const LINK_HEADLESS_LINUX_SUPPORT: &str = "https://github.com/rustdesk/rustdesk/wiki/Headless-Linux-Support"; -pub const LINK_KDE_PLASMA_WAYLAND_SELECT_ALL_DISPLAYS: &str = - "https://github.com/rustdesk/rustdesk/discussions/13468"; lazy_static::lazy_static! { pub static ref HELPER_URL: HashMap<&'static str, &'static str> = HashMap::from([ ("rustdesk docs home", LINK_DOCS_HOME), ("rustdesk docs x11-required", LINK_DOCS_X11_REQUIRED), ("rustdesk x11 headless", LINK_HEADLESS_LINUX_SUPPORT), - ("rustdesk discussion Plasma Wayland all displays", LINK_KDE_PLASMA_WAYLAND_SELECT_ALL_DISPLAYS), ]); }