From 2119dd43977d8d45a37028a8dabf050812152f5c Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Wed, 14 Dec 2022 12:56:08 +0200 Subject: [PATCH] Git: Do not show progress bar and the command on instant blame Change-Id: I22d06d0359d82d086062be4990b51858754b9145 Reviewed-by: Jarek Kobus --- src/plugins/git/gitplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/git/gitplugin.cpp b/src/plugins/git/gitplugin.cpp index 0ba8b77d961..575a5d6a923 100644 --- a/src/plugins/git/gitplugin.cpp +++ b/src/plugins/git/gitplugin.cpp @@ -1581,7 +1581,7 @@ void GitPluginPrivate::instantBlame() }; GitClient::instance()->vcsExecWithHandler(workingDirectory, {"blame", "-p", "-L", lineString, "--", filePath.toString()}, - this, commandHandler); + this, commandHandler, RunFlags::SuppressCommandLogging); } void GitPluginPrivate::stopInstantBlame()