mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2026-02-13 07:17:13 -06:00
This commit is contained in:
@@ -9,6 +9,8 @@ FlatLaf Change Log
|
|||||||
- IntelliJ Themes: Fixed ComboBox size and Spinner border in all Material UI
|
- IntelliJ Themes: Fixed ComboBox size and Spinner border in all Material UI
|
||||||
Lite themes and limit tree row height in all Material UI Lite themes and some
|
Lite themes and limit tree row height in all Material UI Lite themes and some
|
||||||
other themes.
|
other themes.
|
||||||
|
- IntelliJ Themes: Material UI Lite themes did not work when using
|
||||||
|
[IntelliJ Themes Pack](flatlaf-intellij-themes) addon. (PR #88, issue #89)
|
||||||
|
|
||||||
|
|
||||||
## 0.32
|
## 0.32
|
||||||
|
|||||||
@@ -32,7 +32,8 @@ class Utils
|
|||||||
|
|
||||||
static IntelliJTheme loadTheme( String name ) {
|
static IntelliJTheme loadTheme( String name ) {
|
||||||
try {
|
try {
|
||||||
return new IntelliJTheme( Utils.class.getResourceAsStream( "themes/" + name ) );
|
return new IntelliJTheme( Utils.class.getResourceAsStream(
|
||||||
|
"/com/formdev/flatlaf/intellijthemes/themes/" + name ) );
|
||||||
} catch( ParseException | IOException ex ) {
|
} catch( ParseException | IOException ex ) {
|
||||||
String msg = "FlatLaf: Failed to load IntelliJ theme '" + name + "'";
|
String msg = "FlatLaf: Failed to load IntelliJ theme '" + name + "'";
|
||||||
LOG.log( Level.SEVERE, msg, ex );
|
LOG.log( Level.SEVERE, msg, ex );
|
||||||
|
|||||||
@@ -32,7 +32,8 @@ class Utils
|
|||||||
|
|
||||||
static IntelliJTheme loadTheme( String name ) {
|
static IntelliJTheme loadTheme( String name ) {
|
||||||
try {
|
try {
|
||||||
return new IntelliJTheme( Utils.class.getResourceAsStream( "themes/material-theme-ui-lite/" + name ) );
|
return new IntelliJTheme( Utils.class.getResourceAsStream(
|
||||||
|
"/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/" + name ) );
|
||||||
} catch( ParseException | IOException ex ) {
|
} catch( ParseException | IOException ex ) {
|
||||||
String msg = "FlatLaf: Failed to load IntelliJ theme '" + name + "'";
|
String msg = "FlatLaf: Failed to load IntelliJ theme '" + name + "'";
|
||||||
LOG.log( Level.SEVERE, msg, ex );
|
LOG.log( Level.SEVERE, msg, ex );
|
||||||
|
|||||||
Reference in New Issue
Block a user