From 465cf583a505bd2a9d056a087726baa0c652997d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 2 Nov 2019 09:49:16 +0530 Subject: [PATCH] ... --- src/calibre/gui2/viewer/toolbars.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/gui2/viewer/toolbars.py b/src/calibre/gui2/viewer/toolbars.py index 292c68eaf3..c63793e1bd 100644 --- a/src/calibre/gui2/viewer/toolbars.py +++ b/src/calibre/gui2/viewer/toolbars.py @@ -90,10 +90,10 @@ class VerticalToolBar(QToolBar): a = self.mode_action if mode == 'paged': a.setChecked(False) - a.setToolTip(_('Switch to flow mode — where the text is not broken into pages')) + a.setToolTip(_('Switch to flow mode -- where the text is not broken into pages')) else: a.setChecked(True) - a.setToolTip(_('Switch to paged mode — where the text is broken into pages')) + a.setToolTip(_('Switch to paged mode -- where the text is broken into pages')) def set_tooltips(self, smap): rmap = defaultdict(list)