From 11acd2a33cbb07e03c316ad74f09b51fcf23a63e Mon Sep 17 00:00:00 2001 From: Navarro Date: Sun, 17 Mar 2019 16:25:59 +0100 Subject: [PATCH] [#012] * Minor bugs fixed: * Fixed N_TILDE; letter `n` now only can show tilde (enie) in case of single_tap (acute_requested) and the rest of the accents are ignored --- keyboards/40percentclub/gherkin/keymaps/30_layout/keymap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keyboards/40percentclub/gherkin/keymaps/30_layout/keymap.c b/keyboards/40percentclub/gherkin/keymaps/30_layout/keymap.c index 7f9d7db68010..039625b68678 100644 --- a/keyboards/40percentclub/gherkin/keymaps/30_layout/keymap.c +++ b/keyboards/40percentclub/gherkin/keymaps/30_layout/keymap.c @@ -3420,7 +3420,7 @@ void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) { case N_TILDE: if (!record->event.pressed) { - if (accent_pressed) + if (acute_requested) { /* The key is being pressed.*/ if (shift_flag) // ✳️ shift_flag is grabbed at the very beginning of this function (action_function)