Skip to content

Commit

Permalink
Change minimum move time to 300ms
Browse files Browse the repository at this point in the history
  • Loading branch information
Codel1417 committed Mar 3, 2024
1 parent 1424148 commit 15b87ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Frontend/Widgets/speed_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ class SpeedWidget extends StatelessWidget {
subtitle: Slider(
label: "${(value.toInt() * 20).toInt()}ms",
value: value,
min: 5,
min: 15,
max: 127,
divisions: 120,
divisions: 110,
onChanged: onChanged,
));
}
Expand Down

0 comments on commit 15b87ab

Please sign in to comment.