From dc7de896902163aa498260c4b566e4477324beb2 Mon Sep 17 00:00:00 2001 From: Raktbastr Date: Sat, 14 Feb 2026 14:52:21 -0600 Subject: [PATCH] Patched cycletime bug. Max cycletime now set to 60 sec --- lib/notespage.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/notespage.dart b/lib/notespage.dart index ee4122f..0aa56f6 100644 --- a/lib/notespage.dart +++ b/lib/notespage.dart @@ -303,12 +303,12 @@ class _NotesPageState extends State { 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(() {