Compare commits

...

2 Commits

Author SHA1 Message Date
chylex a4908c2da9
Update README 2023-01-10 08:46:44 +01:00
chylex e05b0148e3
Fix exception when New UI is enabled
Closes #1
2023-01-10 08:41:49 +01:00
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
Adds color to many of the gray IntelliJ platform icons. Uses resources from https://github.com/JetBrains/intellij-community and some of the official IntelliJ platform plugins.
Adds color to over 300 gray IntelliJ icons. Uses resources from https://github.com/JetBrains/intellij-community and some of the official IntelliJ platform plugins.
First release includes 176 updated icons. It should be compatible with *most* IDEs based on the IntelliJ platform. Please report any issues in particular IDEs, and any icons you would like to see changed.
The plugin is intended to be compatible with all IDEs based on the IntelliJ platform. Please report any issues in particular IDEs, and any icons you would like to see changed. Note that "New UI" is not supported.
![Example IDE elements](https://github.com/chylex/IntelliJ-Colored-Icons/blob/master/.github/readme/elements.png)

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