diff options
author | svu <svu> | 2006-06-13 21:16:51 +0000 |
---|---|---|
committer | svu <svu> | 2006-06-13 21:16:51 +0000 |
commit | 266c835705775cd82599af4a9849dac88b03e99d (patch) | |
tree | 6538a68dddc2e52b13537b91fea8fa5a633bb09d /compat | |
parent | 602efd056fdaa441114a96141be2690eb2473a3c (diff) | |
download | xkeyboard-config-266c835705775cd82599af4a9849dac88b03e99d.tar.gz xkeyboard-config-266c835705775cd82599af4a9849dac88b03e99d.tar.bz2 xkeyboard-config-266c835705775cd82599af4a9849dac88b03e99d.zip |
Fixing Canadian with hex values
Diffstat (limited to 'compat')
-rw-r--r-- | compat/level5 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/compat/level5 b/compat/level5 index e41cd631..db87d4dc 100644 --- a/compat/level5 +++ b/compat/level5 @@ -15,33 +15,33 @@ default partial xkb_compatibility "default" { latchMods.latchToLock= True; //ISO_Level5_Shift - interpret F21+Any { + interpret 0xfe11+Any { useModMapMods= level1; virtualModifier= LevelFive; action= SetMods(modifiers=LevelFive); }; - interpret F21 { + interpret 0xfe11 { action= SetMods(modifiers=LevelFive); }; //ISO_Level5_Latch - interpret F22+Any { + interpret 0xfe12+Any { virtualModifier= LevelFive; action= LatchMods(modifiers=LevelFive); }; - interpret F22 { + interpret 0xfe12 { action= LatchMods(modifiers=LevelFive); }; //ISO_Level5_Lock - interpret F23+Any { + interpret 0xfe13+Any { virtualModifier= LevelFive; action= LockMods(modifiers=LevelFive); }; - interpret F23 { + interpret 0xfe13 { action= LockMods(modifiers=LevelFive); }; }; |