mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2026-02-12 06:57:13 -06:00
ignore internal UI keys in dumps and in UI defaults inspector
This commit is contained in:
@@ -313,6 +313,10 @@ public class FlatUIDefaultsInspector
|
||||
if( !(key instanceof String) )
|
||||
continue;
|
||||
|
||||
// ignore internal keys
|
||||
if( ((String)key).startsWith( "FlatLaf.internal." ) )
|
||||
continue;
|
||||
|
||||
// ignore values of type Class
|
||||
Object value = defaults.get( key );
|
||||
if( value instanceof Class )
|
||||
|
||||
Reference in New Issue
Block a user