Skip to content

Commit

Permalink
Macro Fix for Hold-Release always on (OpenStickCommunity#1047)
Browse files Browse the repository at this point in the history
  • Loading branch information
arntsonl authored Jun 7, 2024
1 parent 85dfb31 commit a8e7128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/addons/input_macro.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ void InputMacro::runCurrentMacro() {

// Stop Macro if released (ON PRESS & ON HOLD REPEAT)
if (inputMacroOptions->macroList[macroPosition].macroType == ON_HOLD_REPEAT &&
!isMacroTriggerHeld && macro.interruptible) {
!isMacroTriggerHeld ) {
reset();
return;
}
Expand Down

0 comments on commit a8e7128

Please sign in to comment.