From 26870d5c9753d7abcb8e0d2756643f82eda39986 Mon Sep 17 00:00:00 2001 From: Vixalie Date: Fri, 27 Mar 2026 22:01:13 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=AD=A3=E7=AA=97=E5=8F=A3?= =?UTF-8?q?=E6=A0=87=E9=A2=98=E6=A0=BC=E5=BC=8F=EF=BC=8C=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E5=BA=94=E7=94=A8=E5=90=8D=E7=A7=B0=E5=92=8C=E6=A0=87=E9=A2=98?= =?UTF-8?q?=E9=A1=BA=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src-tauri/src/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/src/commands.rs b/src-tauri/src/commands.rs index ce26ca0..ec7405e 100644 --- a/src-tauri/src/commands.rs +++ b/src-tauri/src/commands.rs @@ -8,7 +8,7 @@ pub fn set_window_title( ) -> Result<(), String> { let app_name = app_handle.package_info().name.clone(); let new_title = title - .map(|t| format!("{} - {}", t, app_name)) + .map(|t| format!("{} - {}", app_name, t)) .unwrap_or(app_name); window.set_title(&new_title).map_err(|e| e.to_string()) }