1
0
mirror of https://github.com/oliexdev/openScale.git synced 2025-08-17 22:11:35 +02:00

Significantly raise BMI MaxValue (#729)

BMI over 50 is not unlikely, raise the value to something extreme.

BMI 125 would be about 300kg at 1.55m body height.
This commit is contained in:
Sebastian Lechte
2021-05-16 11:23:20 +02:00
committed by GitHub
parent 24b79f3569
commit cab0a627ed

View File

@@ -58,7 +58,7 @@ public class BMIMeasurementView extends FloatMeasurementView {
@Override
protected float getMaxValue() {
return 50;
return 125;
}
@Override