1
0
mirror of https://github.com/chylex/IntelliJ-Colored-Icons.git synced 2025-06-14 06:34:04 +02:00

Fix exception when New UI is enabled

Closes 
This commit is contained in:
chylex 2023-01-10 08:41:49 +01:00
parent 43b8f4c648
commit e05b0148e3
Signed by: chylex
GPG Key ID: 4DE42C8F19A80548

View File

@ -190,8 +190,8 @@ public class IconPatcher extends IconPathPatcher {
}
private void addPathWithDark(final String path) {
iconPaths.put('/' + path + ".svg", "/icons/" + path + ".svg");
iconPaths.put('/' + path + "_dark.svg", "/icons/" + path + "_dark.svg");
iconPaths.put('/' + path + ".svg", "icons/" + path + ".svg");
iconPaths.put('/' + path + "_dark.svg", "icons/" + path + "_dark.svg");
}
@Nullable