use original lookup word in wikipedia lookup

This commit is contained in:
chrox
2014-08-20 18:25:37 +08:00
parent a275a8cc89
commit f575797b01
3 changed files with 8 additions and 6 deletions

View File

@@ -30,7 +30,7 @@ function ReaderDictionary:stardictLookup(word, box)
local ok, results = pcall(JSON.decode, JSON, results_str)
if ok and results then
DEBUG("lookup result table:", word, results)
self:showDict(results, box)
self:showDict(word, results, box)
else
-- dummy results
results = {
@@ -41,18 +41,20 @@ function ReaderDictionary:stardictLookup(word, box)
}
}
DEBUG("dummy result table:", word, results)
self:showDict(results, box)
self:showDict(word, results, box)
end
end
end
function ReaderDictionary:showDict(results, box)
function ReaderDictionary:showDict(word, results, box)
if results and results[1] then
DEBUG("showing quick lookup window")
UIManager:show(DictQuickLookup:new{
ui = self.ui,
highlight = self.highlight,
dialog = self.dialog,
-- original lookup word
word = word,
results = results,
dictionary = self.default_dictionary,
width = Screen:getWidth() - Screen:scaleByDPI(80),