macOS: Update core surface size when config changes

This commit is contained in:
Daniel Wennberg
2025-11-08 23:12:34 -08:00
parent 2592b96f6d
commit e3ff49e653

View File

@@ -129,7 +129,7 @@ class SurfaceScrollView: NSView {
surfaceView.$derivedConfig
.sink { [weak self] _ in
DispatchQueue.main.async { [weak self] in
self?.synchronizeAppearance()
self?.handleConfigChange()
}
}
.store(in: &cancellables)
@@ -232,6 +232,12 @@ class SurfaceScrollView: NSView {
private func handleScrollerStyleChange() {
synchronizeCoreSurface()
}
/// Handles config changes
private func handleConfigChange() {
synchronizeAppearance()
synchronizeCoreSurface()
}
/// Handles live scroll events (user actively dragging the scrollbar).
///