mirror of
https://github.com/koreader/koreader
synced 2024-11-10 01:10:34 +00:00
Merge pull request #610 from hwhw/master
Claim that Android devices do not have a keyboard
This commit is contained in:
commit
40dc9443bd
@ -100,11 +100,13 @@ function Device:isKobo()
|
||||
return string.find(self:getModel() or "", "Kobo_") == 1
|
||||
end
|
||||
|
||||
Device.isAndroid = util.isAndroid
|
||||
|
||||
function Device:hasNoKeyboard()
|
||||
if self.has_no_keyboard ~= nil then return self.has_no_keyboard end
|
||||
local model = self:getModel()
|
||||
self.has_no_keyboard = (model == "KindlePaperWhite") or (model == "KindlePaperWhite2")
|
||||
or (model == "KindleTouch") or self:isKobo()
|
||||
or (model == "KindleTouch") or self:isKobo() or self:isAndroid()
|
||||
return self.has_no_keyboard
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user