UIDefaultsLoader: changed .properties file loading order: now all core .properties files are loaded before loading addon .properties files, which makes it easier to overwrite core values in addons; also, addon loading order can be specified

This commit is contained in:
Karl Tauber
2020-01-06 16:54:56 +01:00
parent 8dbbe20840
commit 33ea84004d
5 changed files with 44 additions and 13 deletions

View File

@@ -29,4 +29,8 @@ import com.formdev.flatlaf.FlatDefaultsAddon;
public class FlatSwingXDefaultsAddon
extends FlatDefaultsAddon
{
@Override
public int getPriority() {
return 10;
}
}