summaryrefslogtreecommitdiff
path: root/keyboard/preonic/keymap_midi.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboard/preonic/keymap_midi.c')
-rw-r--r--keyboard/preonic/keymap_midi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboard/preonic/keymap_midi.c b/keyboard/preonic/keymap_midi.c
index ec380fd9ca..c7937bb9b5 100644
--- a/keyboard/preonic/keymap_midi.c
+++ b/keyboard/preonic/keymap_midi.c
@@ -31,7 +31,7 @@ void action_function(keyrecord_t *record, uint8_t id, uint8_t opt)
}
}
- if (record->event.key.col == 11 && record->event.key.row == 4) {
+ if (record->event.key.col == 11 && record->event.key.row == 4 && record->event.pressed) {
starting_note++;
midi_send_cc(&midi_device, 0, 0x7B, 0);
midi_send_cc(&midi_device, 1, 0x7B, 0);
@@ -39,7 +39,7 @@ void action_function(keyrecord_t *record, uint8_t id, uint8_t opt)
midi_send_cc(&midi_device, 3, 0x7B, 0);
midi_send_cc(&midi_device, 4, 0x7B, 0);
}
- if (record->event.key.col == 8 && record->event.key.row == 4) {
+ if (record->event.key.col == 8 && record->event.key.row == 4 && record->event.pressed) {
starting_note--;
midi_send_cc(&midi_device, 0, 0x7B, 0);
midi_send_cc(&midi_device, 1, 0x7B, 0);