Skip to content

Commit

Permalink
fix(Path View): 🐛 freshIndex should drawTrails if showBCs, not just s…
Browse files Browse the repository at this point in the history
…howTrail
  • Loading branch information
SkepticMystic committed Dec 4, 2021
1 parent 80e266d commit dbb05dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export default class BCPlugin extends Plugin {
this.mainG = await this.initGraphs();
for (const view of this.VIEWS)
await this.getActiveTYPEView(view.type)?.draw();
if (this.settings.showTrail) await this.drawTrail();
if (this.settings.showBCs) await this.drawTrail();
if (this.settings.showRefreshNotice) new Notice("Index refreshed");
}

Expand Down

0 comments on commit dbb05dd

Please sign in to comment.