Removed duplicate setting for toggling Channel Point Redeemed Message highlights (#3296)

Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
This commit is contained in:
Felanbird 2021-10-23 06:08:25 -04:00 committed by GitHub
parent b16fb5da7f
commit 15f7e65e0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View file

@ -21,6 +21,7 @@
- Minor: Added `flags.reward_message` filter variable (#3231) - Minor: Added `flags.reward_message` filter variable (#3231)
- Minor: Added highlights for first messages (#3267) - Minor: Added highlights for first messages (#3267)
- Minor: Ignore out of bounds check for tiling wms (#3270) - Minor: Ignore out of bounds check for tiling wms (#3270)
- Minor: Removed duplicate setting for toggling `Channel Point Redeemed Message` highlights (#3296)
- Bugfix: Fixed colored usernames sometimes not working. (#3170) - Bugfix: Fixed colored usernames sometimes not working. (#3170)
- Bugfix: Restored ability to send duplicate `/me` messages. (#3166) - Bugfix: Restored ability to send duplicate `/me` messages. (#3166)
- Bugfix: Notifications for moderators about other moderators deleting messages can now be disabled. (#3121) - Bugfix: Notifications for moderators about other moderators deleting messages can now be disabled. (#3121)

View file

@ -231,8 +231,6 @@ void GeneralPage::initLayout(GeneralPageView &layout)
layout.addCheckbox("Separate with lines", s.separateMessages); layout.addCheckbox("Separate with lines", s.separateMessages);
layout.addCheckbox("Alternate background color", s.alternateMessages); layout.addCheckbox("Alternate background color", s.alternateMessages);
layout.addCheckbox("Show deleted messages", s.hideModerated, true); layout.addCheckbox("Show deleted messages", s.hideModerated, true);
layout.addCheckbox("Highlight messages redeemed with Channel Points",
s.enableRedeemedHighlight);
layout.addDropdown<QString>( layout.addDropdown<QString>(
"Timestamp format (a = am/pm, zzz = milliseconds)", "Timestamp format (a = am/pm, zzz = milliseconds)",
{"Disable", "h:mm", "hh:mm", "h:mm a", "hh:mm a", "h:mm:ss", "hh:mm:ss", {"Disable", "h:mm", "hh:mm", "h:mm a", "hh:mm a", "h:mm:ss", "hh:mm:ss",