From f3747741df69f5610d11af419bd57b0829fc7918 Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Tue, 25 Mar 2014 21:13:27 +0100 Subject: [PATCH] Disable backlog in chatmonitor by default This has some performance issues (the client will freeze for several seconds after sync and on disconnect), and thus should not be enabled by default. We'll leave the feature in for people who don't care about the delay, and hope that this can be optimized in a later version. --- src/qtui/settingspages/chatmonitorsettingspage.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/qtui/settingspages/chatmonitorsettingspage.cpp b/src/qtui/settingspages/chatmonitorsettingspage.cpp index 535c987c..8dd7e27c 100644 --- a/src/qtui/settingspages/chatmonitorsettingspage.cpp +++ b/src/qtui/settingspages/chatmonitorsettingspage.cpp @@ -81,7 +81,7 @@ void ChatMonitorSettingsPage::defaults() settings["ShowOwnMsgs"] = false; settings["Buffers"] = QVariant(); settings["Default"] = true; - settings["ShowBacklog"] = true; + settings["ShowBacklog"] = false; settings["IncludeRead"] = false; load(); widgetHasChanged(); @@ -133,8 +133,8 @@ void ChatMonitorSettingsPage::loadSettings() settings["ShowHighlights"] = chatViewSettings.value("ShowHighlights", false); settings["ShowOwnMsgs"] = chatViewSettings.value("ShowOwnMsgs", false); settings["Buffers"] = chatViewSettings.value("Buffers", QVariantList()); - settings["ShowBacklog"] = chatViewSettings.value("ShowBacklog", true); - settings["IncludeRead"] = chatViewSettings.value("IncludeRead", true); + settings["ShowBacklog"] = chatViewSettings.value("ShowBacklog", false); + settings["IncludeRead"] = chatViewSettings.value("IncludeRead", false); } -- 2.20.1