From 276ffa893dfca0f2bca20642c8df3aabc1a71606 Mon Sep 17 00:00:00 2001 From: kvasonaft Date: Tue, 21 Jul 2026 00:21:54 +0300 Subject: [PATCH] Use the book icon for the table-of-contents panel Give the TOC side panel the "book-open" icon, matching the reader tab, instead of the generic "list" icon that looked like Obsidian's outline. Co-Authored-By: Claude Opus 4.8 --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 3e6ebd1..19b3fc3 100644 --- a/src/main.ts +++ b/src/main.ts @@ -768,7 +768,7 @@ class Fb2TocView extends ItemView { } getIcon(): string { - return "list"; + return "book-open"; // match the reader view's book icon } async onOpen(): Promise {