diff --git a/CHANGELOG.md b/CHANGELOG.md index f86e8825..3399433a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ - Minor: Added a description for the logging option under moderation tab. (#6514) - Minor: Fixed "edit hotkey" dialog opening like a normal window. (#6540) - Bugfix: Expose the "Extra extension IDs" setting on non-Windows systems too. (#6509) +- Bugfix: Fixed font change not resulting in forced layout update. (#6536) - Bugfix: Fixed scrollbar rect computation potentially resulting in overflows. (#6547) - Dev: Update release documentation. (#6498) - Dev: Make code sanitizers opt in with the `CHATTERINO_SANITIZER_SUPPORT` CMake option. After that's enabled, use the `SANITIZE_*` flag to enable individual sanitizers. (#6493) diff --git a/src/singletons/WindowManager.cpp b/src/singletons/WindowManager.cpp index 5718dda2..bcb9cf73 100644 --- a/src/singletons/WindowManager.cpp +++ b/src/singletons/WindowManager.cpp @@ -163,9 +163,9 @@ WindowManager::WindowManager(const Args &appArgs_, const Paths &paths, settings.streamerModeHideModActions); this->forceLayoutChannelViewsListener.add( settings.streamerModeHideRestrictedUsers); + this->forceLayoutChannelViewsListener.add(fonts.fontChanged); this->layoutChannelViewsListener.add(settings.timestampFormat); - this->layoutChannelViewsListener.add(fonts.fontChanged); this->invalidateChannelViewBuffersListener.add(settings.alternateMessages); this->invalidateChannelViewBuffersListener.add(settings.separateMessages);