From e15f53cdf243bad49fa0fce081caceea124f35a5 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 25 Mar 2016 09:19:34 +0530 Subject: [PATCH] Better icon for toc button in viewer --- src/calibre/gui2/viewer/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/viewer/ui.py b/src/calibre/gui2/viewer/ui.py index 18fb64e66e..030725903a 100644 --- a/src/calibre/gui2/viewer/ui.py +++ b/src/calibre/gui2/viewer/ui.py @@ -388,7 +388,7 @@ class Main(MainWindow): a('copy', _('Copy to clipboard'), 'edit-copy.png').setDisabled(True) a('font_size_larger', _('Increase font size'), 'font_size_larger.png') a('font_size_smaller', _('Decrease font size'), 'font_size_smaller.png') - a('table_of_contents', self.toc_dock, 'highlight_only_on.png', sc_name='Table of Contents') + a('table_of_contents', self.toc_dock, 'toc.png', sc_name='Table of Contents') a('full_screen', _('Toggle full screen'), 'page.png', sc_name='Fullscreen').setCheckable(True) self.tool_bar.addSeparator()