Skip to content

Commit

Permalink
0.0.7
Browse files Browse the repository at this point in the history
updated add creature icon
  • Loading branch information
valentine195 committed Jul 2, 2021
1 parent 3b88038 commit 85772ba
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 22 deletions.
3 changes: 2 additions & 1 deletion src/svelte/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import { Creature } from "src/utils/creature";
import { ExtraButtonComponent } from "obsidian";
import { ADD } from "src/utils";
export let creatures: Creature[] = [];
export let view: TrackerView;
Expand Down Expand Up @@ -40,7 +41,7 @@
const addButton = (node: HTMLElement) => {
new ExtraButtonComponent(node)
.setTooltip("Add Creature")
.setIcon("plus-with-circle")
.setIcon(ADD)
.onClick(() => {
addNew = true;
});
Expand Down
Loading

0 comments on commit 85772ba

Please sign in to comment.