From e1b7d8027ab8fe50b4844dfe42405e5e15e5e678 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 18 Apr 2021 07:49:26 +0530 Subject: [PATCH] Fix incorrect tooltip for read aloud/autoscroll buttons in toolbar --- src/calibre/gui2/viewer/toolbars.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/viewer/toolbars.py b/src/calibre/gui2/viewer/toolbars.py index 0296d10218..15a0e873ef 100644 --- a/src/calibre/gui2/viewer/toolbars.py +++ b/src/calibre/gui2/viewer/toolbars.py @@ -235,7 +235,7 @@ class ActionsToolBar(ToolBar): def update_read_aloud_action(self, active): self.toggle_read_aloud_action.setChecked(active) - self.autoscroll_action.setToolTip( + self.toggle_read_aloud_action.setToolTip( _('Stop reading') if active else _('Read the text of the book aloud')) def update_reference_mode_action(self, enabled):