mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
fix: badge highlights not immediately updating color (#5110)
This commit is contained in:
parent
97702e0a1f
commit
acee654bd2
|
@ -50,6 +50,7 @@
|
|||
- Bugfix: Fixed an occasional crash for channel point redemptions with text input. (#4949)
|
||||
- Bugfix: Fixed triple click on message also selecting moderation buttons. (#4961)
|
||||
- Bugfix: Fixed a freeze from a bad regex in _Ignores_. (#4965)
|
||||
- Bugfix: Fixed badge highlight changes not immediately being reflected. (#5110)
|
||||
- Bugfix: Fixed some emotes not appearing when using _Ignores_. (#4965)
|
||||
- Bugfix: Fixed lookahead/-behind not working in _Ignores_. (#4965)
|
||||
- Bugfix: Fixed Image Uploader accidentally deleting images with some hosts when link resolver was enabled. (#4971)
|
||||
|
|
|
@ -265,6 +265,10 @@ int Application::run(QApplication &qtApp)
|
|||
getSettings()->highlightedUsers.delayedItemsChanged.connect([this] {
|
||||
this->windows->forceLayoutChannelViews();
|
||||
});
|
||||
std::ignore =
|
||||
getSettings()->highlightedBadges.delayedItemsChanged.connect([this] {
|
||||
this->windows->forceLayoutChannelViews();
|
||||
});
|
||||
|
||||
getSettings()->removeSpacesBetweenEmotes.connect([this] {
|
||||
this->windows->forceLayoutChannelViews();
|
||||
|
|
Loading…
Reference in a new issue