#6383 Hide console window when in foreground mode

This commit is contained in:
Nick Bolton 2018-08-02 18:59:17 +01:00
parent 8ef2e7edbc
commit 25c2e360d3
1 changed files with 1 additions and 1 deletions

View File

@ -373,7 +373,7 @@ MSWindowsWatchdog::startProcessInForeground(String& command)
return CreateProcess(
NULL, LPSTR(command.c_str()), NULL, NULL,
TRUE, 0, NULL, NULL, &si, &m_processInfo);
TRUE, CREATE_NO_WINDOW, NULL, NULL, &si, &m_processInfo);
}
BOOL