mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
Swap icon path parameters: move expUI path to the first place
GitOrigin-RevId: 74cf09fb454c89b676be259cdd7437a81ac4c067
This commit is contained in:
committed by
intellij-monorepo-bot
parent
d1b87b08b0
commit
932f2d438e
@@ -11,8 +11,8 @@ import javax.swing.*;
|
||||
* DO NOT EDIT IT BY HAND, run "Generate icon classes" configuration instead
|
||||
*/
|
||||
public final class PythonParserIcons {
|
||||
private static @NotNull Icon load(@NotNull String path, @NotNull String expUIPath, int cacheKey, int flags) {
|
||||
private static @NotNull Icon load(@NotNull String expUIPath, @NotNull String path, int cacheKey, int flags) {
|
||||
return IconManager.getInstance().loadRasterizedIcon(path, expUIPath, PythonParserIcons.class.getClassLoader(), cacheKey, flags);
|
||||
}
|
||||
/** 16x16 */ public static final @NotNull Icon PythonFile = load("icons/com/jetbrains/python/parser/pythonFile.svg", "icons/com/jetbrains/python/parser/expui/python.svg", -1892316725, 0);
|
||||
/** 16x16 */ public static final @NotNull Icon PythonFile = load("icons/com/jetbrains/python/parser/expui/python.svg", "icons/com/jetbrains/python/parser/pythonFile.svg", -1892316725, 0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user