UI defaults: removed FlatDarkLaf InputMap dumps because they are equal to the Light versions

This commit is contained in:
Karl Tauber
2020-02-18 17:56:22 +01:00
parent 5cb7be4a64
commit 1e4f2d85a2
3 changed files with 3 additions and 1804 deletions

View File

@@ -94,6 +94,9 @@ public class UIDefaultsDump
LookAndFeel lookAndFeel = UIManager.getLookAndFeel();
dump( dir, "", lookAndFeel, key -> !key.contains( "InputMap" ) );
if( lookAndFeel instanceof FlatDarkLaf )
return;
dump( dir, "_InputMap", lookAndFeel, key -> key.contains( "InputMap" ) );
}