mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
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:
@@ -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
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user