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(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
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(
|
Slider(
|
||||||
value: _cycleTime,
|
value: _cycleTime,
|
||||||
min: 0,
|
min: 0,
|
||||||
max: _cycleTime,
|
max: 60,
|
||||||
divisions: 50,
|
divisions: 60,
|
||||||
label: _cycleTime.round().toString(),
|
label: _cycleTime.round().toString(),
|
||||||
onChanged: (double value) {
|
onChanged: (double value) {
|
||||||
setState(() {
|
setState(() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue