fix wrong method delegation

This commit is contained in:
Armin Schrenk
2026-02-11 14:49:56 +01:00
parent b85780eae9
commit fb54d96997

View File

@@ -95,7 +95,7 @@ public class JfxUiAppearanceProvider implements UiAppearanceProvider {
public void adjustToTheme(Theme theme) {
var impl = realImpl.get();
if (impl != null) {
impl.getSystemTheme();
impl.adjustToTheme(theme);
}
}