diff options
author | Drashna Jaelre <drashna@live.com> | 2018-04-21 02:53:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-21 02:53:19 +0200 |
commit | 1bb77c087502de19fe5e403f519be321ba2c85f5 (patch) | |
tree | 90c7e0c619bd526a0fa61313943dbacee399dea4 /quantum/process_keycode | |
parent | 4e4101efdf1e1d954ccec4aa9be05234e2a699fa (diff) | |
download | qmk_firmware-1bb77c087502de19fe5e403f519be321ba2c85f5.tar.gz qmk_firmware-1bb77c087502de19fe5e403f519be321ba2c85f5.tar.xz |
Update to drashna keymaps and userspace (#2756)
* Re-add NO_SECRETS option
* Add Thumb Clusters defines for default layout
* Minor tweaks
* More Minor tweaks
* Revert Orthodox layers and move function keys around
* Fix keymap so it will compile under the Infinity
Since I haven't added 'pretty' layouts to it yet
* Cleanup of userspace
* Cleanup keymaps
* OMG fix Workman
* Move mods layer key around
* Reduce debounce in Ergodox EZ
* Fix Infinity layers
* Add list of pins used by Ergdox EZ for easy reference
* Revert "Reduce debounce in Ergodox EZ"
This reverts commit 8a3db2673b419ef8032c40a6d29156cef632f9cd.
* Add Clicky toggle to Orthodox
* Fix Audio Clicky keycode
* Enable Faux Clicky by default
* Add Unicode stuff
Diffstat (limited to 'quantum/process_keycode')
-rw-r--r-- | quantum/process_keycode/process_audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/process_keycode/process_audio.c b/quantum/process_keycode/process_audio.c index 2d92e4064..fc0f23ee3 100644 --- a/quantum/process_keycode/process_audio.c +++ b/quantum/process_keycode/process_audio.c @@ -108,7 +108,7 @@ bool process_audio(uint16_t keycode, keyrecord_t *record) { } - if ( (clicky_enable && keycode != CLICKY_TOGGLE) || (!clicky_enable && keycode == CLICKY_TOGGLE) ) { + if ( clicky_enable ) { if (record->event.pressed) { stop_all_notes(); clicky_play();; |