diff options
author | Sergey V. Udaltsov <svu@gnome.org> | 2012-03-10 23:10:12 +0000 |
---|---|---|
committer | Sergey V. Udaltsov <svu@gnome.org> | 2012-03-10 23:10:12 +0000 |
commit | 77afdc4fff538aa49ff5c56141581aad25aa5f39 (patch) | |
tree | bc34648ab3ba7a4705ffc454f1837398117bab3e | |
parent | fc2d015173d735a1c7cc9e97c694b326d63bf4e1 (diff) |
Unneeded keypad overlay compat modules
-rw-r--r-- | compat/Makefile.am | 2 | ||||
-rw-r--r-- | compat/keypad | 58 |
2 files changed, 1 insertions, 59 deletions
diff --git a/compat/Makefile.am b/compat/Makefile.am index 70dc054b..2be8154a 100644 --- a/compat/Makefile.am +++ b/compat/Makefile.am @@ -3,7 +3,7 @@ compatdir = $(xkb_base)/compat dist_compat_DATA = \ accessx basic caps complete \ default iso9995 \ -japan keypad ledcaps \ +japan ledcaps \ lednum ledscroll level5 \ misc mousekeys \ olpc pc pc98 xfree86 \ diff --git a/compat/keypad b/compat/keypad deleted file mode 100644 index 6bac6805..00000000 --- a/compat/keypad +++ /dev/null @@ -1,58 +0,0 @@ -// Interpretations needed to implement the numeric keypad -// as an overlay instead of a modifier. - -partial hidden xkb_compatibility "overlay" { - include "keypad(overlay1)" -}; -partial hidden xkb_compatibility "overlay1" { - virtual_modifiers NumLock,AltGr; - - interpret.repeat= False; - setMods.clearLocks= True; - latchMods.clearLocks= True; - latchMods.latchToLock= True; - - interpret Num_Lock { - virtualModifier= NumLock; - action= LockControls(ctrls=overlay1); - }; - interpret Num_Lock+Any { - virtualModifier= NumLock; - action= LockControls(ctrls=overlay1); - }; - - indicator.allowExplicit= True; - indicator.driveskbd= True; - replace indicator "Num Lock" { - whichModState= Locked; - modifiers= NumLock; - controls= Overlay1; - }; - indicator.allowExplicit= True; -}; -partial hidden xkb_compatibility "overlay2" { - virtual_modifiers NumLock,AltGr; - - interpret.repeat= False; - setMods.clearLocks= True; - latchMods.clearLocks= True; - latchMods.latchToLock= True; - - interpret Num_Lock { - virtualModifier= NumLock; - action= LockControls(ctrls=overlay2); - }; - interpret Num_Lock+Any { - virtualModifier= NumLock; - action= LockControls(ctrls=overlay1); - }; - - indicator.allowExplicit= True; - indicator.driveskbd= True; - replace indicator "Num Lock" { - whichModState= Locked; - modifiers= NumLock; - controls= Overlay2; - }; - indicator.allowExplicit= True; -}; |