mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Fix an issue where the "Enable zero-width emotes" setting was showing the inverse state (#4462)
This commit is contained in:
parent
a777a227d4
commit
1ad93b7acc
|
@ -6,6 +6,7 @@
|
||||||
- Bugfix: Fixed an issue where animated emotes would render on top of zero-width emotes. (#4314)
|
- Bugfix: Fixed an issue where animated emotes would render on top of zero-width emotes. (#4314)
|
||||||
- Bugfix: Fixed an issue where it was difficult to hover a zero-width emote. (#4314)
|
- Bugfix: Fixed an issue where it was difficult to hover a zero-width emote. (#4314)
|
||||||
- Bugfix: Fixed an issue where context-menu items for zero-width emotes displayed the wrong provider. (#4460)
|
- Bugfix: Fixed an issue where context-menu items for zero-width emotes displayed the wrong provider. (#4460)
|
||||||
|
- Bugfix: Fixed an issue where the "Enable zero-width emotes" setting was showing the inverse state. (#4462)
|
||||||
- Dev: Ignore unhandled BTTV user-events. (#4438)
|
- Dev: Ignore unhandled BTTV user-events. (#4438)
|
||||||
- Dev: Only log debug messages when NDEBUG is not defined. (#4442)
|
- Dev: Only log debug messages when NDEBUG is not defined. (#4442)
|
||||||
- Dev: Cleaned up theme related code. (#4450)
|
- Dev: Cleaned up theme related code. (#4450)
|
||||||
|
|
|
@ -375,7 +375,7 @@ void GeneralPage::initLayout(GeneralPageView &layout)
|
||||||
layout.addCheckbox("Animate only when Chatterino is focused",
|
layout.addCheckbox("Animate only when Chatterino is focused",
|
||||||
s.animationsWhenFocused);
|
s.animationsWhenFocused);
|
||||||
layout.addCheckbox(
|
layout.addCheckbox(
|
||||||
"Enable zero-width emotes", s.enableZeroWidthEmotes,
|
"Enable zero-width emotes", s.enableZeroWidthEmotes, false,
|
||||||
"When disabled, emotes that overlap other emotes, such as BTTV's "
|
"When disabled, emotes that overlap other emotes, such as BTTV's "
|
||||||
"cvMask and 7TV's RainTime, will appear as normal emotes.");
|
"cvMask and 7TV's RainTime, will appear as normal emotes.");
|
||||||
layout.addCheckbox("Enable emote auto-completion by typing :",
|
layout.addCheckbox("Enable emote auto-completion by typing :",
|
||||||
|
|
Loading…
Reference in a new issue