Skip to content
Snippets Groups Projects
Unverified Commit 7d8fa4d7 authored by GyDi's avatar GyDi
Browse files

fix: something

parent 76081f8d
No related branches found
No related tags found
No related merge requests found
...@@ -60,10 +60,12 @@ fn main() -> std::io::Result<()> { ...@@ -60,10 +60,12 @@ fn main() -> std::io::Result<()> {
_ => {} _ => {}
}, },
SystemTrayEvent::LeftClick { .. } => { SystemTrayEvent::LeftClick { .. } => {
let window = app_handle.get_window("main").unwrap(); if cfg![target_os = "windows"] {
window.unminimize().unwrap(); let window = app_handle.get_window("main").unwrap();
window.show().unwrap(); window.unminimize().unwrap();
window.set_focus().unwrap(); window.show().unwrap();
window.set_focus().unwrap();
}
} }
_ => {} _ => {}
}) })
......
...@@ -16,6 +16,7 @@ pub fn resolve_setup(app: &App) { ...@@ -16,6 +16,7 @@ pub fn resolve_setup(app: &App) {
#[cfg(target_os = "macos")] #[cfg(target_os = "macos")]
{ {
use tauri_plugin_vibrancy::MacOSVibrancy; use tauri_plugin_vibrancy::MacOSVibrancy;
#[allow(deprecated)]
window.apply_vibrancy(MacOSVibrancy::AppearanceBased); window.apply_vibrancy(MacOSVibrancy::AppearanceBased);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment