diff options
author | Gergely Nagy <algernon@keyboard.io> | 2018-03-10 14:37:51 +0100 |
---|---|---|
committer | Gergely Nagy <algernon@keyboard.io> | 2018-03-10 14:37:51 +0100 |
commit | 3b91ecfbf8aeb6b9127a6f17a389b99582622dac (patch) | |
tree | add9c7674db163edb1ad4b194985dd50a0b32225 | |
parent | af407cb51a14870c5d0bd6fc707d64df9cc342ac (diff) | |
download | Model01-Firmware-3b91ecfbf8aeb6b9127a6f17a389b99582622dac.tar.gz Model01-Firmware-3b91ecfbf8aeb6b9127a6f17a389b99582622dac.zip |
Make the Quote transparent on the NUMPAD layer.
Because the key two rows below `NumLock` is `Key_Quote` on the base layer too,
and is not a numpad-specific key either, make it transparent, so it does not get
highlighted erroneously.
Thanks to @ImmaculatePotato and Eddie Jinks for reporting the issue, and
proposing the fix.
Fixes #48.
Signed-off-by: Gergely Nagy <algernon@keyboard.io>
-rw-r--r-- | Model01-Firmware.ino | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Model01-Firmware.ino b/Model01-Firmware.ino index 577b3f5..4be4af4 100644 --- a/Model01-Firmware.ino +++ b/Model01-Firmware.ino @@ -156,7 +156,7 @@ const Key keymaps[][ROWS][COLS] PROGMEM = { M(MACRO_VERSION_INFO), ___, Key_Keypad7, Key_Keypad8, Key_Keypad9, Key_KeypadSubtract, ___, ___, ___, Key_Keypad4, Key_Keypad5, Key_Keypad6, Key_KeypadAdd, ___, - ___, Key_Keypad1, Key_Keypad2, Key_Keypad3, Key_Equals, Key_Quote, + ___, Key_Keypad1, Key_Keypad2, Key_Keypad3, Key_Equals, ___, ___, ___, Key_Keypad0, Key_KeypadDot, Key_KeypadMultiply, Key_KeypadDivide, Key_Enter, ___, ___, ___, ___, ___), |