don't attempt to start external processes in a minimized state

most 3rd party apps are meant to be viewed while playing

fixes #161
This commit is contained in:
Chris
2025-05-05 23:45:11 -06:00
parent 87c8070f22
commit 6c14817325
2 changed files with 7 additions and 1 deletions

View File

@ -2,6 +2,12 @@
## [unreleased]
### Changes
- Don't attempt to start external processes in a minimized state
Most 3rd party apps are meant to be viewed while playing. Should also fix 3rd party apps that don't render properly
when starting minimized ([#161]).
### Bug Fixes
- Add support for downloading stealth updates ([#163])
@ -417,4 +423,5 @@ Initial release
[#151]: https://github.com/rfvgyhn/min-ed-launcher/issues/151
[#156]: https://github.com/rfvgyhn/min-ed-launcher/issues/156
[#157]: https://github.com/rfvgyhn/min-ed-launcher/issues/157
[#161]: https://github.com/rfvgyhn/min-ed-launcher/issues/161
[#163]: https://github.com/rfvgyhn/min-ed-launcher/issues/163

View File

@ -259,7 +259,6 @@ let private mapProcessConfig p =
pInfo.UseShellExecute <- false
pInfo.RedirectStandardOutput <- true
pInfo.RedirectStandardError <- true
pInfo.WindowStyle <- ProcessWindowStyle.Minimized
pInfo
let getSettings args appDir fileConfig = task {
let findCbLaunchDir paths =