fix: prevent loading spinner when launching utility process on Windows (#43657)

fix: prevent spinning cursor when launching utility process on Windows
This commit is contained in:
Niklas Wenzel 2024-09-16 20:20:42 +02:00 committed by GitHub
parent 8f0dffea9e
commit f84ffc8fc8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 97 additions and 27 deletions

View file

@ -166,6 +166,7 @@ UtilityProcessWrapper::UtilityProcessWrapper(
#if BUILDFLAG(IS_WIN)
.WithStdoutHandle(std::move(stdout_write))
.WithStderrHandle(std::move(stderr_write))
.WithFeedbackCursorOff(true)
#elif BUILDFLAG(IS_POSIX)
.WithAdditionalFds(std::move(fds_to_remap))
#endif