diff options
author | tmk <nobody@nowhere> | 2013-10-04 03:30:09 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-10-04 16:04:31 +0900 |
commit | d52d554360d3bf06189bfd4f386fa99348d8a0a8 (patch) | |
tree | b05d27552402f371e61aa0f29906a60c87e213ad /common.mk | |
parent | cb434cfebc607db15b52a42adae6423bd40f1f98 (diff) |
Fix mod stuck of MODS_KEY when leaving layer #62
- Add action_util.c and remove action_oneshot.c
- Add oneshot_mods for MODS_ONESHOT
- Add weak_mods for MODS_KEY and MACRO
- weak_mods is cleared when layer switching
Diffstat (limited to 'common.mk')
-rw-r--r-- | common.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,9 +3,9 @@ SRC += $(COMMON_DIR)/host.c \ $(COMMON_DIR)/keyboard.c \ $(COMMON_DIR)/action.c \ $(COMMON_DIR)/action_tapping.c \ - $(COMMON_DIR)/action_oneshot.c \ $(COMMON_DIR)/action_macro.c \ $(COMMON_DIR)/action_layer.c \ + $(COMMON_DIR)/action_util.c \ $(COMMON_DIR)/keymap.c \ $(COMMON_DIR)/timer.c \ $(COMMON_DIR)/print.c \ |