From dcafe3f78cbe82a5afa341f8f6590f86cc5322fe Mon Sep 17 00:00:00 2001 From: "craig.p.drummond" Date: Thu, 26 Sep 2013 18:04:49 +0000 Subject: [PATCH] Read correct config item!! --- gui/settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/settings.cpp b/gui/settings.cpp index 287e32240..6ed68d5de 100644 --- a/gui/settings.cpp +++ b/gui/settings.cpp @@ -723,7 +723,7 @@ int Settings::maxCoverFindPerIteration() int Settings::maxCoverUpdatePerIteration() { - int v=GET_INT("maxCoverFindPerIteration", 5); + int v=GET_INT("maxCoverUpdatePerIteration", 5); return v<0 ? 5 : (v>20 ? 20 : v); }