IntelliJ Themes: fixed NPE in Solarized themes on scroll bar hover

This commit is contained in:
Karl Tauber
2020-08-07 17:34:23 +02:00
parent 8bcf9dbcaf
commit 5a27d03faa
2 changed files with 4 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ FlatLaf Change Log
- Custom window decorations: Embedded menu bar did not always respond to mouse
events after adding menus and when running in JetBrains Runtime. (issue #151)
- IntelliJ Themes: Fixed NPE in Solarized themes on scroll bar hover.
## 0.39

View File

@@ -263,6 +263,9 @@ public class IntelliJTheme
for( Map.Entry<String, Object> e : ((Map<String, Object>)value).entrySet() )
apply( key + '.' + e.getKey(), e.getValue(), defaults, defaultsKeysCache, uiKeys );
} else {
if( "".equals( value ) )
return; // ignore empty value
uiKeys.add( key );
// fix ComboBox size and Spinner border in all Material UI Lite themes