Add environment exit statement (#4496)

This commit is contained in:
Arjun Balgovind
2020-06-25 14:21:09 -07:00
committed by GitHub
parent b3eae80ece
commit aad2e8012b

View File

@@ -72,6 +72,9 @@ namespace Microsoft.PowerToys.Settings.UI.Runner
MessageBoxButton.OK);
app.Shutdown();
}
// Terminate all threads of the process
Environment.Exit(0);
}
}