Show/Hide Virtual keyboard and more keyboard shortcuts (#12162)

This commit is contained in:
David
2024-08-07 17:09:40 +01:00
committed by GitHub
parent 975efae929
commit 2900eef276
12 changed files with 141 additions and 19 deletions

View File

@@ -237,7 +237,11 @@ function MultiInputDialog:onSwitchFocus(inputbox)
self._input_widget:focus()
self.focused_field_idx = inputbox.idx
-- Make sure we have a (new) visible keyboard
if (Device:hasKeyboard() or Device:hasScreenKB()) and G_reader_settings:isFalse("virtual_keyboard_enabled") then
-- do not load virtual keyboard when user is hiding it.
return
end
-- Otherwise make sure we have a (new) visible keyboard
self:onShowKeyboard()
end