Coco: do not open the CoverageBrowser debug window by default

Change-Id: Ib22c0475e3c2a120ca10c6d73a5e2ee0199817e0
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
David Schulz
2022-05-10 09:53:07 +02:00
parent e99fa02913
commit 38ec866d57

View File

@@ -74,7 +74,7 @@ BaseClientInterface *CocoLanguageClient::clientInterface(const FilePath &coco,
const FilePath &csmes)
{
auto interface = new StdIOClientInterface();
interface->setCommandLine(CommandLine(coco, {"--lsp-stdio", "--debug", csmes.toUserOutput()}));
interface->setCommandLine(CommandLine(coco, {"--lsp-stdio", csmes.toUserOutput()}));
return interface;
}