From fbffd3abaef1afcee296992e8f56a21902715036 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Wed, 17 Feb 2016 23:08:53 +0200 Subject: [PATCH] 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 --- src/plugins/git/gitgrep.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }