Feature: Implement and apply UI scale settings across the application

This commit is contained in:
2026-05-06 05:39:13 +02:00
parent 7e5238a3c8
commit 2e7b438b66
3 changed files with 36 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ function Main() {
useEffect(() => {
desktopApi.getSettings().then(settings => {
applyColorScheme(settings.colorScheme || 'Default')
desktopApi.applyUiScale(settings.uiScale)
})
}, [])