Skip to content

Commit

Permalink
[qmk#12]
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
manolodeinternet committed Mar 17, 2019
1 parent 3402625 commit 11acd2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keyboards/40percentclub/gherkin/keymaps/30_layout/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 11acd2a

Please sign in to comment.