summaryrefslogtreecommitdiff
path: root/keyboards/clueboard/keymaps/default
diff options
context:
space:
mode:
authorskullY <skullydazed@gmail.com>2017-03-21 22:06:47 -0700
committerskullY <skullydazed@gmail.com>2017-03-21 22:06:47 -0700
commit452949f9139a04d46748e6abc03e92d65d74eb30 (patch)
tree5f48221df354c5511550fa6144b34e47bf51528c /keyboards/clueboard/keymaps/default
parentdd967f2c0512a0007d214e219edf60dd990b778c (diff)
Add #1170 to all the clueboard keymaps
Diffstat (limited to 'keyboards/clueboard/keymaps/default')
-rw-r--r--keyboards/clueboard/keymaps/default/keymap.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/keyboards/clueboard/keymaps/default/keymap.c b/keyboards/clueboard/keymaps/default/keymap.c
index 37f00e8d80..7fad9c1b21 100644
--- a/keyboards/clueboard/keymaps/default/keymap.c
+++ b/keyboards/clueboard/keymaps/default/keymap.c
@@ -50,6 +50,7 @@ const uint16_t PROGMEM fn_actions[] = {
void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
static uint8_t mods_pressed;
+ static bool mod_flag;
switch (id) {
case 0:
@@ -61,6 +62,7 @@ void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
/* The key is being pressed.
*/
if (mods_pressed) {
+ mod_flag = true;
add_key(KC_GRV);
send_keyboard_report();
} else {
@@ -70,7 +72,8 @@ void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
} else {
/* The key is being released.
*/
- if (mods_pressed) {
+ if (mod_flag) {
+ mod_flag = false;
del_key(KC_GRV);
send_keyboard_report();
} else {