fix Windows build?
This commit is contained in:
parent
1b53bc1bc7
commit
ef607db260
1 changed files with 12 additions and 10 deletions
|
|
@ -99,6 +99,7 @@ pub fn run() {
|
|||
.on_window_event(|window, event| match event {
|
||||
tauri::WindowEvent::CloseRequested { api, .. } => {
|
||||
#[cfg(target_os = "macos")]
|
||||
{
|
||||
let res = window
|
||||
.app_handle()
|
||||
.set_activation_policy(tauri::ActivationPolicy::Accessory);
|
||||
|
|
@ -111,6 +112,7 @@ pub fn run() {
|
|||
// TODO may be different on windows, this works for macos
|
||||
tauri::AppHandle::hide(window.app_handle()).unwrap();
|
||||
}
|
||||
}
|
||||
_ => {}
|
||||
})
|
||||
.invoke_handler(tauri::generate_handler![
|
||||
|
|
|
|||
Loading…
Reference in a new issue