Explorar el Código

chore: Shorten text to prevent Windows tooltip truncation.

wonfen hace 6 meses
padre
commit
aa8f6f4ad6
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      src-tauri/src/core/tray.rs

+ 3 - 3
src-tauri/src/core/tray.rs

@@ -297,11 +297,11 @@ impl Tray {
         };
         let _ = tray.set_tooltip(&format!(
             "Clash Verge {version}\n{}: {}\n{}: {}\n{}: {}",
-            t!("System Proxy", "系统代理"),
+            t!("SysProxy", "系统代理"),
             switch_map[system_proxy],
-            t!("TUN Mode", "Tun 模式"),
+            t!("TUN", "Tun模式"),
             switch_map[tun_mode],
-            t!("Curent Profile", "当前订阅"),
+            t!("Profile", "当前订阅"),
             current_profile_name
         ));