Skip to content

Commit

Permalink
Don't leave open brackets
Browse files Browse the repository at this point in the history
Signed-off-by: Evy Bongers <[email protected]>
  • Loading branch information
EvyBongers committed Mar 23, 2024
1 parent 75e0883 commit 934ee1e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/Kaleidoscope-Qukeys/src/kaleidoscope/plugin/Qukeys.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ constexpr Key LayerTapKey(uint8_t layer, Key tap_key) {

constexpr Key Qkey(Key primary_key, Key secondary_key) {
return Key(kaleidoscope::ranges::QK_FIRST +
(primary_key.getKeyCode() + secondary_key.getKeyCode());
// TODO(EvyBongers): this is going to need review
primary_key.getKeyCode() + secondary_key.getKeyCode());
}

// Data structure for an individual qukey
Expand Down

0 comments on commit 934ee1e

Please sign in to comment.