tangled
alpha
login
or
join now
starhaven.dev
/
diorama
1
fork
atom
this repo has no description
1
fork
atom
overview
issues
pulls
pipelines
fix loading themes from json
bates64.com
1 month ago
111ff2a1
3afc4348
+2
-1
1 changed file
expand all
collapse all
unified
split
src
main
java
app
Themes.java
+2
-1
src/main/java/app/Themes.java
···
107
107
switch (theme.source) {
108
108
case CUSTOM_JSON:
109
109
try {
110
110
-
IntelliJTheme.setup(new BufferedInputStream(new FileInputStream(new File(theme.className))));
110
110
+
File file = new File(Directories.DATABASE_THEMES.toFile(), theme.fileName);
111
111
+
IntelliJTheme.setup(new BufferedInputStream(new FileInputStream(file)));
111
112
currentTheme = theme;
112
113
return;
113
114
}