diff options
author | Jason Stillwell <dragonfax@gmail.com> | 2018-03-16 13:41:01 -0700 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2018-03-16 16:41:01 -0400 |
commit | 00b4dce605bc44a2ee6babaf93dbe3640e735d2e (patch) | |
tree | f146f9f64439a7ea0b16bf91f5f7e89e172a4368 /common_features.mk | |
parent | bb5c98699fe622a8978c6fc62dc5829d227fdec5 (diff) | |
download | qmk_firmware-00b4dce605bc44a2ee6babaf93dbe3640e735d2e.tar.gz |
Rule to enable Modifiers with Auto-Shift (#2542)
* Re-enable modifiers with auto-shift
* Auto-shift modifiers rule
* missed a line
* Documentation
* fixing whitespace
Diffstat (limited to 'common_features.mk')
-rw-r--r-- | common_features.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common_features.mk b/common_features.mk index 1c0b3546a..9b99edd75 100644 --- a/common_features.mk +++ b/common_features.mk @@ -132,6 +132,9 @@ endif ifeq ($(strip $(AUTO_SHIFT_ENABLE)), yes) OPT_DEFS += -DAUTO_SHIFT_ENABLE SRC += $(QUANTUM_DIR)/process_keycode/process_auto_shift.c + ifeq ($(strip $(AUTO_SHIFT_MODIFIERS)), yes) + OPT_DEFS += -DAUTO_SHIFT_MODIFIERS + endif endif ifeq ($(strip $(SERIAL_LINK_ENABLE)), yes) |