summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2013-02-11 00:02:11 +0900
committertmk <nobody@nowhere>2013-02-11 00:02:11 +0900
commiteea85c7e24c4ff61bff0a6db8246a19896b5b630 (patch)
treea11ce2bb5d9fdea9852a5323ce7cdf10a78e409c /common
parent0be309ccc6acae61616f89bcc43df5e02c4df92a (diff)
Fix is_tap_key()
Diffstat (limited to 'common')
-rw-r--r--common/action.c14
-rw-r--r--common/action.h2
2 files changed, 8 insertions, 8 deletions
diff --git a/common/action.c b/common/action.c
index f6e50032eb..6d5336752e 100644
--- a/common/action.c
+++ b/common/action.c
@@ -816,18 +816,18 @@ bool is_tap_key(key_t key)
case ACT_LAYER:
case ACT_LAYER_BIT:
switch (action.layer.code) {
- case 0x00:
- case 0xF1 ... 0xFF:
+ case LAYER_MOMENTARY:
+ case LAYER_ON_PRESS:
+ case LAYER_ON_RELEASE:
+ case LAYER_DEFAULT:
return false;
- case 0xF0:
- default:
+ case LAYER_TAP_TOGGLE:
+ default: /* tap key */
return true;
}
return false;
case ACT_FUNCTION:
- if (action.func.opt & FUNC_TAP) {
- return true;
- }
+ if (action.func.opt & FUNC_TAP) { return true; }
return false;
}
return false;
diff --git a/common/action.h b/common/action.h
index 800554eb8f..9b559cb181 100644
--- a/common/action.h
+++ b/common/action.h
@@ -323,7 +323,7 @@ enum usage_pages {
/* Function */
enum function_opts {
- FUNC_TAP = 0x8,
+ FUNC_TAP = 0x8, /* indciates function is tappable */
};
#define ACTION_FUNCTION(id, opt) ACTION(ACT_FUNCTION, (opt)<<8 | id)
#define ACTION_FUNCTION_TAP(id) ACTION(ACT_FUNCTION, FUNC_TAP<<8 | id)