From 830eceafc58a04cbd2de8989339d7b0787affce6 Mon Sep 17 00:00:00 2001 From: Stef Tervelde Date: Wed, 22 Oct 2025 07:26:40 +0200 Subject: [PATCH] Switch from ProcessingTheme to PDETheme in window UI Replaces the use of ProcessingTheme with PDETheme in the PDEWindowContent composable --- app/src/processing/app/ui/theme/Window.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/processing/app/ui/theme/Window.kt b/app/src/processing/app/ui/theme/Window.kt index 91d245089..7b38e774c 100644 --- a/app/src/processing/app/ui/theme/Window.kt +++ b/app/src/processing/app/ui/theme/Window.kt @@ -84,7 +84,7 @@ private fun PDEWindowContent(window: JFrame, titleKey: String, fullWindowContent } CompositionLocalProvider(LocalWindow provides window) { - ProcessingTheme { + PDETheme { val locale = LocalLocale.current window.title = locale[titleKey] LaunchedEffect(locale) {