add go back button to touchmenu

This commit is contained in:
Qingping Hou
2013-03-15 05:18:34 -04:00
parent 24400c06e6
commit eaf43dc30b
5 changed files with 59 additions and 23 deletions

View File

@@ -40,11 +40,12 @@ end
function IconButton:onTapClickButton()
self.image.invert = true
UIManager:setDirty(self.parent, "partial")
UIManager:scheduleIn(0.5, function()
-- make sure button reacts before doing callback
UIManager:scheduleIn(0.1, function()
self.callback()
self.image.invert = false
UIManager:setDirty(self.parent, "partial")
end)
self.callback()
return true
end