diff --git a/src/kaleidoscope/plugin/Model01-TestMode.cpp b/src/kaleidoscope/plugin/Model01-TestMode.cpp index c2776ec1..27cf61ed 100644 --- a/src/kaleidoscope/plugin/Model01-TestMode.cpp +++ b/src/kaleidoscope/plugin/Model01-TestMode.cpp @@ -107,14 +107,11 @@ void TestMode::handleKeyEvent(side_data_t *side, keydata_t *oldState, keydata_t // If the key is held down if (keyState == HELD) { KeyboardHardware.setCrgbAt(row, col_offset - col, green); - } - // If we triggered chatter detection ever on this key - else if (bitRead(side->badKeys, keynum) == 1) { + } else if (bitRead(side->badKeys, keynum) == 1) { + // If we triggered chatter detection ever on this key KeyboardHardware.setCrgbAt(row, col_offset - col, red); - } - - // If the key was just released - else if (keyState == TOGGLED_OFF) { + } else if (keyState == TOGGLED_OFF) { + // If the key was just released KeyboardHardware.setCrgbAt(row, col_offset - col, blue); } } diff --git a/src/kaleidoscope/plugin/Model01-TestMode.h b/src/kaleidoscope/plugin/Model01-TestMode.h index d1419469..4fc7ba51 100644 --- a/src/kaleidoscope/plugin/Model01-TestMode.h +++ b/src/kaleidoscope/plugin/Model01-TestMode.h @@ -32,7 +32,7 @@ class TestMode : public kaleidoscope::Plugin { } side_data_t; - TestMode(void) {}; + TestMode(void) {} EventHandlerResult beforeReportingState();