mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
46c19ba8e9
* Option to disable keyboard flashing
13 lines
371 B
Lua
13 lines
371 B
Lua
local _ = require("gettext")
|
|
|
|
return {
|
|
text = _("Flash keyboard"),
|
|
checked_func = function()
|
|
return G_reader_settings:readSetting("flash_keyboard") ~= false
|
|
end,
|
|
callback = function()
|
|
local disabled = G_reader_settings:readSetting("flash_keyboard") ~= false
|
|
G_reader_settings:saveSetting("flash_keyboard", not disabled)
|
|
end,
|
|
}
|