Skip to content

Commit 7baefa1

Browse files
Restore Missing Icons Class
Related to changes that are relevant for fixing #2
1 parent 6bb8e59 commit 7baefa1

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package io.github.ethersync
2+
3+
import com.intellij.openapi.util.IconLoader
4+
5+
object Icons {
6+
7+
@JvmField
8+
val ToolbarIcon = IconLoader.getIcon("/toolbar.svg", javaClass)
9+
10+
}

src/main/kotlin/io/github/ethersync/StartEthersyncDaemonAction.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class StartEthersyncDaemonAction : AnAction() {
1414
project,
1515
"Provide ethersync peer address. Leave empty if you want to host a new session.",
1616
"Peer Address",
17-
Icons.PluginIcon
17+
Icons.ToolbarIcon
1818
)
1919

2020
if (address != null) {

0 commit comments

Comments
 (0)