This commit is contained in:
Kovid Goyal 2019-11-02 09:49:16 +05:30
parent 77af13c5f3
commit 465cf583a5
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -90,10 +90,10 @@ class VerticalToolBar(QToolBar):
a = self.mode_action a = self.mode_action
if mode == 'paged': if mode == 'paged':
a.setChecked(False) 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: else:
a.setChecked(True) 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): def set_tooltips(self, smap):
rmap = defaultdict(list) rmap = defaultdict(list)