Cleanup link_states and fix a rare highlight bug

This commit is contained in:
Paulo Matias
2014-01-22 09:59:53 -02:00
parent e9cc47133f
commit 5caba3f95a
2 changed files with 6 additions and 1 deletions

View File

@@ -302,7 +302,7 @@ function ReaderHighlight:lookup(selected_word)
local word_box = self.view:pageToScreenTransform(self.hold_pos.page, selected_word.sbox)
self.ui:handleEvent(Event:new("LookupWord", self, selected_word.word, word_box))
-- or we will do OCR
elseif selected_word.sbox then
elseif selected_word.sbox and self.hold_pos then
local word = self.ui.document:getOCRWord(self.hold_pos.page, selected_word)
DEBUG("OCRed word:", word)
local word_box = self.view:pageToScreenTransform(self.hold_pos.page, selected_word.sbox)