fix tap on word title will crash koreader

pull/818/head
chrox 10 years ago
parent 7b10d66e1b
commit 948d92a3b3

@ -249,7 +249,9 @@ function UIManager:setDirty(widget, refresh_type)
if not refresh_type then
refresh_type = "auto"
end
self._dirty[widget] = refresh_type
if widget then
self._dirty[widget] = refresh_type
end
end
function UIManager:insertZMQ(zeromq)

@ -147,7 +147,7 @@ function Button:showHide(show)
end
function Button:onTapSelect()
if self.enabled then
if self.enabled and self.callback then
self[1].invert = true
UIManager:setDirty(self.show_parent, "partial")
UIManager:scheduleIn(0.1, function()

Loading…
Cancel
Save