Add a note about tapping to show controls

This commit is contained in:
Kovid Goyal 2019-10-15 04:25:13 +05:30
parent 428f576c26
commit c0c6872249
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -87,7 +87,7 @@ def show_controls_help():
div = div.nextSibling div = div.nextSibling
safe_set_inner_html(div, _('Use the <b>PageUp/PageDn</b> or <b>Arrow keys</b> to turn pages')) safe_set_inner_html(div, _('Use the <b>PageUp/PageDn</b> or <b>Arrow keys</b> to turn pages'))
div = div.nextSibling div = div.nextSibling
safe_set_inner_html(div, _('Press the <b>Esc</b> key or <b>{} click</b> to show the viewer controls').format( safe_set_inner_html(div, _('Press the <b>Esc</b> key or <b>{} click</b> or <b>tap on the top third</b> of the text area to show the viewer controls').format(
'control' if 'macos' in window.navigator.userAgent else _('right') 'control' if 'macos' in window.navigator.userAgent else _('right')
)) ))
div = div.nextSibling div = div.nextSibling