|
|
@ -58,9 +58,9 @@ void handleKeyswitchEvent(Key mappedKey, byte row, byte col, uint8_t keyState) {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
if (row < ROWS && col < COLS) {
|
|
|
|
if (row < ROWS && col < COLS) {
|
|
|
|
|
|
|
|
|
|
|
|
/* If a key had an on or off event, we update the live composite keymap. See
|
|
|
|
/* If a key had an on event, we update the live composite keymap. See
|
|
|
|
* layers.h for an explanation about the different caches we have. */
|
|
|
|
* layers.h for an explanation about the different caches we have. */
|
|
|
|
if (keyToggledOn(keyState) || keyToggledOff(keyState))
|
|
|
|
if (keyToggledOn(keyState))
|
|
|
|
Layer.updateLiveCompositeKeymap(row, col);
|
|
|
|
Layer.updateLiveCompositeKeymap(row, col);
|
|
|
|
|
|
|
|
|
|
|
|
/* If the key we are dealing with is masked, ignore it until it is released.
|
|
|
|
/* If the key we are dealing with is masked, ignore it until it is released.
|
|
|
|