We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3abf388 commit 200b951Copy full SHA for 200b951
src-tauri/src/main.rs
@@ -243,7 +243,8 @@ fn main() -> wry::Result<()> {
243
Event::UserEvent(UserEvent::DownloadComplete(_, success)) => {
244
println!("Succeeded: {success}");
245
if success {
246
- let _ = webview.evaluate_script("window.pakeToast('Downloaded to download folder~')");
+ let _ = webview
247
+ .evaluate_script("window.pakeToast('Downloaded to download folder~')");
248
} else {
249
println!("No output path")
250
}
0 commit comments