fix: do forceLayoutChannelViews on font change (#6536)
This commit is contained in:
@@ -9,6 +9,7 @@
|
|||||||
- Minor: Added a description for the logging option under moderation tab. (#6514)
|
- Minor: Added a description for the logging option under moderation tab. (#6514)
|
||||||
- Minor: Fixed "edit hotkey" dialog opening like a normal window. (#6540)
|
- 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: 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)
|
- Bugfix: Fixed scrollbar rect computation potentially resulting in overflows. (#6547)
|
||||||
- Dev: Update release documentation. (#6498)
|
- 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)
|
- 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)
|
||||||
|
|||||||
@@ -163,9 +163,9 @@ WindowManager::WindowManager(const Args &appArgs_, const Paths &paths,
|
|||||||
settings.streamerModeHideModActions);
|
settings.streamerModeHideModActions);
|
||||||
this->forceLayoutChannelViewsListener.add(
|
this->forceLayoutChannelViewsListener.add(
|
||||||
settings.streamerModeHideRestrictedUsers);
|
settings.streamerModeHideRestrictedUsers);
|
||||||
|
this->forceLayoutChannelViewsListener.add(fonts.fontChanged);
|
||||||
|
|
||||||
this->layoutChannelViewsListener.add(settings.timestampFormat);
|
this->layoutChannelViewsListener.add(settings.timestampFormat);
|
||||||
this->layoutChannelViewsListener.add(fonts.fontChanged);
|
|
||||||
|
|
||||||
this->invalidateChannelViewBuffersListener.add(settings.alternateMessages);
|
this->invalidateChannelViewBuffersListener.add(settings.alternateMessages);
|
||||||
this->invalidateChannelViewBuffersListener.add(settings.separateMessages);
|
this->invalidateChannelViewBuffersListener.add(settings.separateMessages);
|
||||||
|
|||||||
Reference in New Issue
Block a user