use save dialog for settings instead of autosaving
This commit is contained in:
@ -18,6 +18,7 @@ fn main() {
|
||||
},
|
||||
Some(("get", m)) => cli::get(m),
|
||||
Some(("exec", m)) => cli::exec(m),
|
||||
Some(("shortcut", m)) => cli::invoke_shortcut(m),
|
||||
_ => unreachable!(),
|
||||
};
|
||||
|
||||
|
@ -6,12 +6,11 @@ use tokio::{
|
||||
sync::oneshot,
|
||||
};
|
||||
|
||||
#[cfg(windows)]
|
||||
use windows::Win32:: {
|
||||
Foundation::HANDLE,
|
||||
System::Pipes::GetNamedPipeClientProcessId,
|
||||
};
|
||||
#[cfg(windows)]
|
||||
|
||||
use std::os::windows::io::AsRawHandle;
|
||||
|
||||
use tauri::async_runtime as rt;
|
||||
|
Reference in New Issue
Block a user