Styling: fixed resolving of UI variables in styles that use other variables

This commit is contained in:
Karl Tauber
2023-01-18 23:26:34 +01:00
parent e34b5eafe1
commit 32dce16363
3 changed files with 20 additions and 3 deletions

View File

@@ -334,7 +334,7 @@ class UIDefaultsLoader
if( newValue == null )
throw new IllegalArgumentException( "variable '" + value + "' not found" );
return newValue;
return resolveValueFromUIManager( newValue );
}
if( !value.startsWith( PROPERTY_PREFIX ) )