summaryrefslogtreecommitdiffstats
path: root/application/MultiMC.cpp
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2015-06-11 01:49:13 +0200
committerPetr Mrázek <peterix@gmail.com>2015-06-11 01:50:20 +0200
commit9684d3b0a087b44b39ae8b007c08f82d3ddc6d8f (patch)
tree628d025e770e8c28998be2415743c11d181a396e /application/MultiMC.cpp
parent1feb4bb387f1dc559a6d368f77171a6e066a69e6 (diff)
downloadMultiMC-9684d3b0a087b44b39ae8b007c08f82d3ddc6d8f.tar
MultiMC-9684d3b0a087b44b39ae8b007c08f82d3ddc6d8f.tar.gz
MultiMC-9684d3b0a087b44b39ae8b007c08f82d3ddc6d8f.tar.lz
MultiMC-9684d3b0a087b44b39ae8b007c08f82d3ddc6d8f.tar.xz
MultiMC-9684d3b0a087b44b39ae8b007c08f82d3ddc6d8f.zip
GH-1008 implement log window max line count
Defaults to 100k lines
Diffstat (limited to 'application/MultiMC.cpp')
-rw-r--r--application/MultiMC.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/application/MultiMC.cpp b/application/MultiMC.cpp
index c76a171f..0319ea75 100644
--- a/application/MultiMC.cpp
+++ b/application/MultiMC.cpp
@@ -454,6 +454,8 @@ void MultiMC::initGlobalSettings(bool test_mode)
m_settings->registerSetting("ConsoleFont", defaultMonospace);
}
m_settings->registerSetting("ConsoleFontSize", defaultSize);
+ m_settings->registerSetting("ConsoleMaxLines", 100000);
+ m_settings->registerSetting("ConsoleOverflowStop", true);
FTBPlugin::initialize(m_settings);