Skip to content

Commit

Permalink
fix: badge highlights not immediately updating color (Chatterino#5110)
Browse files Browse the repository at this point in the history
  • Loading branch information
pajlada authored and devJimmyboy committed Feb 11, 2024
1 parent c225b8e commit 708b5c6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 4 additions & 0 deletions src/Application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,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();
Expand Down

0 comments on commit 708b5c6

Please sign in to comment.