press Enter in Goto Dialog will goto page/location directly

This commit is contained in:
chrox
2013-10-17 23:56:03 +08:00
parent c86bb46ef7
commit d7d2b9a20b
3 changed files with 15 additions and 2 deletions

View File

@@ -94,6 +94,10 @@ function InputText:getKeyboardDimen()
end
function InputText:addChar(char)
if self.enter_callback and char == '\n' then
UIManager:scheduleIn(0.1, function() self.enter_callback() end)
return
end
table.insert(self.charlist, self.charpos, char)
self.charpos = self.charpos + 1
self.text = self:CharlistToString()