mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-15 21:29:23 +00:00
Merge pull request #574 from keymanapp/web-enable-smp-on-kbd-metadata
Enable keyboard supplementary plane mode based on keyboard metadata rather than stub metadata
This commit is contained in:
commit
2e7ad7c71b
1 changed files with 1 additions and 1 deletions
|
|
@ -607,7 +607,7 @@ class KeyboardManager {
|
|||
manager.keymanweb.domManager._SetTargDir(manager.keymanweb.domManager.getLastActiveElement());
|
||||
}
|
||||
|
||||
String.kmwEnableSupplementaryPlane(kbdStub && ((kbdStub['KS'] && (kbdStub['KS'] == 1)) || (kbd['KN'] == 'Hieroglyphic'))); // I3319 - SMP extension, I3363 (Build 301)
|
||||
String.kmwEnableSupplementaryPlane(kbd && ((kbd['KS'] && kbd['KS'] == 1) || kbd['KN'] == 'Hieroglyphic')); // I3319 - SMP extension, I3363 (Build 301)
|
||||
manager.saveCurrentKeyboard(kbd['KI'], kbdStub['KLC']);
|
||||
|
||||
// Prepare and show the OSK for this keyboard
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue