mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
Android: Get rid of the Camera key hack
Unnecessary now that we have a standard mechanism to disable touch input ;).
This commit is contained in:
@@ -570,24 +570,6 @@ function Input:handleKeyBoardEv(ev)
|
||||
return keycode
|
||||
end
|
||||
|
||||
-- The hardware camera button is used in Android to toggle the touchscreen
|
||||
if keycode == "Camera" and ev.value == EVENT_VALUE_KEY_RELEASE
|
||||
and G_reader_settings:isTrue("camera_key_toggles_touchscreen") then
|
||||
local isAndroid, android = pcall(require, "android")
|
||||
if isAndroid then
|
||||
-- toggle touchscreen behaviour
|
||||
android.toggleTouchscreenIgnored()
|
||||
|
||||
-- show a toast with the new behaviour
|
||||
if android.isTouchscreenIgnored() then
|
||||
android.notification(_("Touchscreen disabled"))
|
||||
else
|
||||
android.notification(_("Touchscreen enabled"))
|
||||
end
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if keycode == "Power" then
|
||||
-- Kobo generates Power keycode only, we need to decide whether it's
|
||||
-- power-on or power-off ourselves.
|
||||
|
||||
Reference in New Issue
Block a user