Patched cycletime bug. Max cycletime now set to 60 sec

This commit is contained in:
Raktbastr 2026-02-14 14:52:21 -06:00
parent 1c3b52723f
commit dc7de89690

View file

@ -303,12 +303,12 @@ class _NotesPageState extends State<NotesPage> {
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text('Cycle Time - ${_cycleTime.round()}', style: Theme.of(context).textTheme.titleSmall),
Text('Cycle Time - ${_cycleTime.round()}s', style: Theme.of(context).textTheme.titleSmall),
Slider(
value: _cycleTime,
min: 0,
max: _cycleTime,
divisions: 50,
max: 60,
divisions: 60,
label: _cycleTime.round().toString(),
onChanged: (double value) {
setState(() {