Disable auto-refresh by default.

I think it's annoying, and I suspect that most people won't need it.
This commit is contained in:
Oliver Hamlet
2014-11-12 11:51:10 +00:00
parent 6e06daf738
commit 64764ffd40
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ game: auto # auto, or one of the 'folder' values below.
lastGame: auto # auto, or one of the 'folder' values below.
enableDebugLogging: false
updateMasterlist: true
autoRefresh: true
autoRefresh: false
# Games. The four types are 'Oblivion', 'Skyrim', 'Fallout3' and 'FalloutNV'. They correspond to each base game's libespm and libloadorder settings.
games:
+2 -1
View File
@@ -431,7 +431,7 @@ namespace loot {
return false;
}
if (!_settings["autoRefresh"])
_settings["autoRefresh"] = true;
_settings["autoRefresh"] = false;
if (_settings["windows"])
_settings.remove("windows");
@@ -447,6 +447,7 @@ namespace loot {
root["lastGame"] = "auto";
root["enableDebugLogging"] = false;
root["updateMasterlist"] = true;
root["autoRefresh"] = false;
std::vector<Game> games;
games.push_back(Game(Game::tes4));