E-book viewer: Read aloud: Fix clicking on empty spaces causing read aloud to restart from beginning of chapter. Fixes #2042791 [ebook-viewer read aloud click no text area return to first page](https://bugs.launchpad.net/calibre/+bug/2042791)

This commit is contained in:
Kovid Goyal 2023-11-06 16:50:20 +05:30
parent 64289d3260
commit 378e21b907
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -988,6 +988,8 @@ class IframeBoss:
text_node, offset = None, 0
if data.pos:
r = word_at_point(data.pos.x, data.pos.y)
if not r:
return
else:
r = first_visible_word()
if r and r.startContainer?.nodeType is Node.TEXT_NODE: