mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Removed duplicate setting for toggling Channel Point Redeemed Message
highlights (#3296)
Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
This commit is contained in:
parent
b16fb5da7f
commit
15f7e65e0c
|
@ -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)
|
||||||
|
|
|
@ -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",
|
||||||
|
|
Loading…
Reference in a new issue