From 3c260301ebc7e0c6446f6fdc3ed5318818de0d78 Mon Sep 17 00:00:00 2001 From: Cody McGinnis Date: Mon, 14 Sep 2020 10:22:15 -0400 Subject: [PATCH] fix: key down and key up were swapped --- app/src/behaviors/behavior_simple_macro.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/behaviors/behavior_simple_macro.c b/app/src/behaviors/behavior_simple_macro.c index 45e42cb5..3881e087 100644 --- a/app/src/behaviors/behavior_simple_macro.c +++ b/app/src/behaviors/behavior_simple_macro.c @@ -55,7 +55,7 @@ static int on_keymap_binding_pressed(struct device *dev, u32_t position, u32_t _ { const struct behavior_simple_macro_config *cfg = dev->config_info; - if (cfg->mode == ZMK_BHV_SIMPLE_MACRO_MODE_KEY_UP) + if (cfg->mode == ZMK_BHV_SIMPLE_MACRO_MODE_KEY_DOWN) { LOG_DBG("tapping on key up"); for (int index = 0; index < cfg->behavior_count; index++) @@ -89,7 +89,7 @@ static int on_keymap_binding_released(struct device *dev, u32_t position, u32_t { const struct behavior_simple_macro_config *cfg = dev->config_info; - if (cfg->mode == ZMK_BHV_SIMPLE_MACRO_MODE_KEY_DOWN) + if (cfg->mode == ZMK_BHV_SIMPLE_MACRO_MODE_KEY_UP) { LOG_DBG("tapping on key down"); for (int index = 0; index < cfg->behavior_count; index++)