Skip to content

Commit

Permalink
Fix autoclicker delay visibility (#4185)
Browse files Browse the repository at this point in the history
  • Loading branch information
loma-baldsson authored Oct 30, 2023
1 parent 3a426d5 commit 4f923a7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class AutoClicker extends Module {
.defaultValue(2)
.min(0)
.sliderMax(60)
.visible(() -> leftClickMode.get() != Mode.Disabled)
.visible(() -> leftClickMode.get() == Mode.Press)
.build()
);

Expand All @@ -48,7 +48,7 @@ public class AutoClicker extends Module {
.defaultValue(2)
.min(0)
.sliderMax(60)
.visible(() -> rightClickMode.get() != Mode.Disabled)
.visible(() -> rightClickMode.get() == Mode.Press)
.build()
);

Expand Down

0 comments on commit 4f923a7

Please sign in to comment.