fail under 2

This commit is contained in:
55nknown 2022-12-25 16:41:57 +01:00
parent 1282a0c87e
commit def7113fcf

View File

@ -229,10 +229,14 @@ Color gradeColor({required BuildContext context, required num value, bool nocolo
var settings = Provider.of<SettingsProvider>(context, listen: false); var settings = Provider.of<SettingsProvider>(context, listen: false);
try { try {
if (value >= value.floor() + settings.rounding / 10) { if (value < 2.0) {
valueInt = value.ceil(); valueInt = 1;
} else { } else {
valueInt = value.floor(); if (value >= value.floor() + settings.rounding / 10) {
valueInt = value.ceil();
} else {
valueInt = value.floor();
}
} }
} catch (_) {} } catch (_) {}