Patched cycletime bug. Max cycletime now set to 60 sec
This commit is contained in:
parent
1c3b52723f
commit
dc7de89690
1 changed files with 3 additions and 3 deletions
|
|
@ -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(() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue