aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/git/gitgrep.cpp
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2016-02-17 23:08:53 +0200
committerTobias Hunger <tobias.hunger@theqtcompany.com>2016-02-18 11:13:18 +0000
commitfbffd3abaef1afcee296992e8f56a21902715036 (patch)
tree76a9c7bf3ccfe57d96ee5e59fe7f0aea303b4bce /src/plugins/git/gitgrep.cpp
parent14c7e909b3662f44c3b0a31b7f353588f178633e (diff)
Git: Reduce grep approximated time to 5 seconds
It typically doesn't take more than that. On Windows it might be more, but for this we have the slowly increasing progress. Change-Id: I4cae5ec6d8488f31387a306f841798ca079cdac5 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
Diffstat (limited to 'src/plugins/git/gitgrep.cpp')
-rw-r--r--src/plugins/git/gitgrep.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/git/gitgrep.cpp b/src/plugins/git/gitgrep.cpp
index 47622198d98..b13414a0b0c 100644
--- a/src/plugins/git/gitgrep.cpp
+++ b/src/plugins/git/gitgrep.cpp
@@ -178,7 +178,7 @@ public:
TextEditor::FileFindParameters parameters)
{
GitGrepRunner runner(fi, parameters);
- Core::ProgressTimer progress(fi, 20);
+ Core::ProgressTimer progress(fi, 5);
runner.exec();
}