We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66760ba commit 2b5bca4Copy full SHA for 2b5bca4
src-tauri/src/commands.rs
@@ -58,5 +58,7 @@ pub fn go_to_notification_settings() {
58
#[cfg(target_os = "windows")]
59
#[tauri::command]
60
pub fn go_to_notification_settings() {
61
- let _ = std::process::Command::new("ms-settings:notifications").spawn();
+ let _ = std::process::Command::new("start")
62
+ .arg("ms-settings:notifications")
63
+ .spawn();
64
}
0 commit comments