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

fix: prevent spinning cursor when launching utility process on Windows

Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Niklas Wenzel <dev@nikwen.de>
This commit is contained in:
trop[bot] 2024-09-17 11:51:12 +02:00 committed by GitHub
parent d11c840cf0
commit 6b4f269d22
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