added FlatLaf.isDark()

This commit is contained in:
Karl Tauber
2019-10-29 11:01:48 +01:00
parent 2e0fde464d
commit aa52af4c8f
7 changed files with 31 additions and 2 deletions

View File

@@ -21,6 +21,8 @@ import com.formdev.flatlaf.FlatLaf;
/**
* A Flat LaF that has a test color scheme.
*
* The UI defaults are loaded from FlatTestLaf.properties and FlatLaf.properties
*
* Used to develop Flat LaF.
*
* @author Karl Tauber
@@ -37,4 +39,9 @@ public class FlatTestLaf
public String getDescription() {
return "Flat Test Look and Feel";
}
@Override
public boolean isDark() {
return false;
}
}