Add setting to limit number of historical messages to load on connect (#2252)

This commit is contained in:
pajlada
2020-12-06 13:04:49 +01:00
committed by GitHub
parent 8b2c3c7386
commit 4436109a2f
7 changed files with 59 additions and 1 deletions
+6
View File
@@ -327,8 +327,14 @@ public:
IntSetting startUpNotification = {"/misc/startUpNotification", 0};
QStringSetting currentVersion = {"/misc/currentVersion", ""};
BoolSetting loadTwitchMessageHistoryOnConnect = {
"/misc/twitch/loadMessageHistoryOnConnect", true};
IntSetting twitchMessageHistoryLimit = {
"/misc/twitch/messageHistoryLimit",
800,
};
IntSetting emotesTooltipPreview = {"/misc/emotesTooltipPreview", 1};
BoolSetting openLinksIncognito = {"/misc/openLinksIncognito", 0};