From f115e4774a20c46f02e28108d0d7e407021eca2e Mon Sep 17 00:00:00 2001 From: ctaoist <14012127+ctaoist@users.noreply.github.com> Date: Wed, 18 May 2022 22:38:46 +0800 Subject: [PATCH] =?UTF-8?q?windows=20=E8=BF=98=E6=9C=89=E5=B7=A6=E9=94=AE?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E4=BA=8B=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src-tauri/src/main.rs | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index ad4d70b..93401ea 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -104,10 +104,23 @@ fn main() -> std::io::Result<()> { }, #[cfg(target_os = "windows")] SystemTrayEvent::LeftClick { .. } => { - let window = app_handle.get_window("main").unwrap(); - window.unminimize().unwrap(); - window.show().unwrap(); - window.set_focus().unwrap(); + tauri::window::WindowBuilder::new( + app_handle, + "main".to_string(), + tauri::WindowUrl::App("index.html".into()), + ) + .title("Clash Verge") + .center() + .decorations(false) + .fullscreen(false) + .inner_size(800.0, 636.0) + .min_inner_size(600.0, 520.0) + .build() + .err() + .and_then(|e| { + log::error!("{e}"); + Some(0) + }); } _ => {} })