fix: do forceLayoutChannelViews on font change (#6536)

This commit is contained in:
teknsl
2025-10-25 14:12:05 +02:00
committed by GitHub
parent 6873b540b1
commit 8ad6bbc393
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -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)
+1 -1
View File
@@ -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);