This commit is contained in:
Him188 2020-12-19 00:58:10 +08:00
parent e2fb094e0f
commit ab00443418

View File

@ -13,6 +13,6 @@ import com.intellij.openapi.util.IconLoader
import javax.swing.Icon
object Icons {
val CommandDeclaration: Icon = IconLoader.getIcon("/icons/commandDeclaration.svg")
val PluginMainDeclaration: Icon = IconLoader.getIcon("/icons/pluginMainDeclaration.png")
val CommandDeclaration: Icon = IconLoader.getIcon("/icons/commandDeclaration.svg", Icons::class.java)
val PluginMainDeclaration: Icon = IconLoader.getIcon("/icons/pluginMainDeclaration.png", Icons::class.java)
}