File tree Expand file tree Collapse file tree
src/main/java/com/mattsmeets/macrokey/handler Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11| Version | Released at |
22| :-----: | :---------: |
33| v2.0.0 | 04/11/2018 |
4- | v2.0.1 | 29/12/2018 |
4+ | v2.0.1 | 29/12/2018 |
55| v2.0.2 | 08/12/2019 |
6+ | v2.0.3 | 08/12/2019 |
67
78Changelog
89=======
910
11+ v2.0.3
12+ -----
13+ - [ BUG] Required to press a button twice when you press over a tick (\# 51)
14+
1015v2.0.2
1116-----
1217- [ BUG] Required to press a button twice when you press over a tick (\# 51)
Original file line number Diff line number Diff line change 1- mod_version =2.0.2
1+ mod_version =2.0.3
22mod_name =MacroKey Keybinding
33mod_group =com.mattsmeets.macrokey
44mc_version =1.12
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public void onKeyEvent(MacroActivationEvent event) {
3636 if (event .getMacroState ().isKeyDown ()) {
3737 this .macrosToRun .addAll (event .getMacros ());
3838 } else {
39- this .macrosToRun .removeIf (macro -> event .getMacros ().contains (macro ) && ! macro .willRepeat ());
39+ this .macrosToRun .removeIf (macro -> event .getMacros ().contains (macro ) && macro .willRepeat ());
4040 }
4141 }
4242
You can’t perform that action at this time.
0 commit comments