From 3e632627feed93f89ed3909b7bbebe64c27eae22 Mon Sep 17 00:00:00 2001 From: BroodjeAap Date: Mon, 19 Oct 2020 17:32:49 +0200 Subject: [PATCH] reduced max month practice rounds to something more realistic (500) --- lib/pages/practice/month/MonthPracticeSetupPage.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pages/practice/month/MonthPracticeSetupPage.dart b/lib/pages/practice/month/MonthPracticeSetupPage.dart index 191d841..585f368 100644 --- a/lib/pages/practice/month/MonthPracticeSetupPage.dart +++ b/lib/pages/practice/month/MonthPracticeSetupPage.dart @@ -29,7 +29,7 @@ class _MonthPracticeSetupState extends State { new NumberPicker.integer( initialValue: _count, minValue: 1, - maxValue: 1000000, + maxValue: 500, onChanged: (newNumber) => setState(() => _count = newNumber), ),