Add a setting for the timeout stack style:
"Stack" is the default behaviour, it will search 20 messages up and 5 seconds back in time to stack the timeout. "Stack sparingly" will try to do the same, but only if the user has not typed a message inbetween the this and the last timeout. Fixes #1157
This commit is contained in:
@@ -217,6 +217,10 @@ void GeneralPage::initLayout(SettingsLayout &layout)
|
||||
// layout.addDropdown("Last read message style", {"Default"});
|
||||
layout.addCheckbox("Hide moderated messages", s.hideModerated);
|
||||
layout.addCheckbox("Hide moderation messages", s.hideModerationActions);
|
||||
layout.addDropdown<int>(
|
||||
"Timeout stacking style", {"Stack", "Stack sparingly"},
|
||||
s.timeoutStackStyle, [](int index) { return index; },
|
||||
[](auto args) { return args.index; }, false);
|
||||
|
||||
layout.addTitle("Emotes");
|
||||
layout.addDropdown<float>(
|
||||
|
||||
Reference in New Issue
Block a user