1
0
mirror of https://github.com/chylex/IntelliJ-Colored-Icons.git synced 2025-09-18 17:24:48 +02:00

Fix exception when New UI is enabled

Closes 
This commit is contained in:
2023-01-10 08:41:49 +01:00
parent 43b8f4c648
commit e05b0148e3

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