diff options
author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2022-12-14 12:56:08 +0200 |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2022-12-14 11:04:18 +0000 |
commit | 2119dd43977d8d45a37028a8dabf050812152f5c (patch) | |
tree | 61743210fbad93709f8b8111768cbfe0d7d5b3f6 /src/plugins/git/gitplugin.cpp | |
parent | bf060b426fb3bca7c59d88bb22c3ebc9c617d3b4 (diff) | |
download | qt-creator-2119dd43977d8d45a37028a8dabf050812152f5c.tar.gz |
Git: Do not show progress bar and the command on instant blame
Change-Id: I22d06d0359d82d086062be4990b51858754b9145
Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
Diffstat (limited to 'src/plugins/git/gitplugin.cpp')
-rw-r--r-- | src/plugins/git/gitplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/git/gitplugin.cpp b/src/plugins/git/gitplugin.cpp index 0ba8b77d96..575a5d6a92 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() |