diff options
author | Joel Challis <git@zvecr.com> | 2022-08-14 12:25:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-14 21:25:46 +1000 |
commit | ba04ecfabd4f254bb89ccd7d1de9ac7fb228ce5b (patch) | |
tree | 4198d6b70f683529a19d699a79dcd082e0b71cd2 /quantum/quantum_keycodes.h | |
parent | ac31e429741a640b0d03d2ebd76554b7fe9247e0 (diff) |
Align TO() max layers with other keycodes (#17989)
Diffstat (limited to 'quantum/quantum_keycodes.h')
-rw-r--r-- | quantum/quantum_keycodes.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/quantum/quantum_keycodes.h b/quantum/quantum_keycodes.h index 456fad6f1b..7228ee9e08 100644 --- a/quantum/quantum_keycodes.h +++ b/quantum/quantum_keycodes.h @@ -797,15 +797,8 @@ enum quantum_keycodes { #define EH_LEFT MAGIC_EE_HANDS_LEFT #define EH_RGHT MAGIC_EE_HANDS_RIGHT -// GOTO layer - 16 layers max -// when: -// ON_PRESS = 1 -// ON_RELEASE = 2 -// Unless you have a good reason not to do so, prefer ON_PRESS (1) as your default. -// In fact, we changed it to assume ON_PRESS for sanity/simplicity. If needed, you can add your own -// keycode modeled after the old version, kept below for this. -/* #define TO(layer, when) (QK_TO | (when << 0x4) | (layer & 0xFF)) */ -#define TO(layer) (QK_TO | (ON_PRESS << 0x4) | ((layer)&0xFF)) +// GOTO layer - 256 layer max +#define TO(layer) (QK_TO | ((layer)&0xFF)) // Momentary switch layer - 256 layer max #define MO(layer) (QK_MOMENTARY | ((layer)&0xFF)) |