Virtualkeyboard: allow grey'ing the legacy umlaut mode key (#8276)

This key is still available on non-updated keyboard layouts.
pull/8283/head
hius07 3 years ago committed by GitHub
parent d4628666c9
commit 2b87b1d8ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -270,7 +270,8 @@ function VirtualKey:init()
}
end
if (self.keyboard.shiftmode_keys[self.label] ~= nil and self.keyboard.shiftmode) or
(self.keyboard.symbolmode_keys[self.label] ~= nil and self.keyboard.symbolmode) then
(self.keyboard.umlautmode_keys[self.label] ~= nil and self.keyboard.umlautmode) or
(self.keyboard.symbolmode_keys[self.label] ~= nil and self.keyboard.symbolmode) then
self[1].background = Blitbuffer.COLOR_LIGHT_GRAY
end
self.flash_keyboard = G_reader_settings:nilOrTrue("flash_keyboard")

Loading…
Cancel
Save