From c0c6872249ebe47ce06ad7a792474314e4985eb3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 15 Oct 2019 04:25:13 +0530 Subject: [PATCH] Add a note about tapping to show controls --- src/pyj/read_book/view.pyj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyj/read_book/view.pyj b/src/pyj/read_book/view.pyj index 9af7b9eb4c..1dea2fe086 100644 --- a/src/pyj/read_book/view.pyj +++ b/src/pyj/read_book/view.pyj @@ -87,7 +87,7 @@ def show_controls_help(): div = div.nextSibling safe_set_inner_html(div, _('Use the PageUp/PageDn or Arrow keys to turn pages')) div = div.nextSibling - safe_set_inner_html(div, _('Press the Esc key or {} click to show the viewer controls').format( + safe_set_inner_html(div, _('Press the Esc key or {} click or tap on the top third of the text area to show the viewer controls').format( 'control' if 'macos' in window.navigator.userAgent else _('right') )) div = div.nextSibling