From 37fa269ecb10a32008979a219f0b98554d2e3525 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Mon, 27 Mar 2017 15:39:46 -0700 Subject: [PATCH] Update to new handle_keyswitch_event API naming --- src/Kaleidoscope/TapDance.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Kaleidoscope/TapDance.cpp b/src/Kaleidoscope/TapDance.cpp index 157a5116..22f35951 100644 --- a/src/Kaleidoscope/TapDance.cpp +++ b/src/Kaleidoscope/TapDance.cpp @@ -119,14 +119,14 @@ namespace KaleidoscopePlugins { break; case Interrupt: case Timeout: - handle_key_event (key, lastTapDanceRow, lastTapDanceCol, IS_PRESSED | INJECTED); + handle_keyswitch_event (key, lastTapDanceRow, lastTapDanceCol, IS_PRESSED | INJECTED); break; case Hold: - handle_key_event (key, lastTapDanceRow, lastTapDanceCol, IS_PRESSED | WAS_PRESSED | INJECTED); + handle_keyswitch_event (key, lastTapDanceRow, lastTapDanceCol, IS_PRESSED | WAS_PRESSED | INJECTED); break; case Release: Keyboard.sendReport (); - handle_key_event (key, lastTapDanceRow, lastTapDanceCol, WAS_PRESSED | INJECTED); + handle_keyswitch_event (key, lastTapDanceRow, lastTapDanceCol, WAS_PRESSED | INJECTED); break; } }