From 08664f2aafbfe2b0537a8816f1513980528b82a3 Mon Sep 17 00:00:00 2001 From: ransurf Date: Sat, 16 Oct 2021 21:52:57 -0700 Subject: [PATCH] changed icon, fixed plugin name --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index a6c8237..a6d7d70 100644 --- a/main.js +++ b/main.js @@ -32263,7 +32263,7 @@ class ExamplePlugin extends obsidian.Plugin { await this.loadSettings(); this.addSettingTab(new ExampleSettingsTab(this.app, this)); this.registerView(VIEW_TYPE_EXAMPLE, (leaf) => (this.view = new ExampleView(leaf, this))); - this.addRibbonIcon("dice", "Open Habitica Pane", () => { + this.addRibbonIcon("popup-open", "Open Habitica Pane", () => { this.activateView(); }); }