Fix 3dmigoto path setting

Apparently broken since 1.0.21 whoops
This commit is contained in:
Thoronium
2023-04-02 01:11:07 -06:00
parent ef3ba2a045
commit 5d6bd72083
3 changed files with 3 additions and 4 deletions

View File

@@ -97,7 +97,7 @@ pub fn install_location() -> String {
}
#[tauri::command]
pub fn set_migoto_target(_path: String, migoto_path: String) -> bool {
pub fn set_migoto_target(migoto_path: String) -> bool {
let mut migoto_pathbuf = PathBuf::from(migoto_path);
migoto_pathbuf.pop();