1
0
mirror of https://github.com/oliexdev/openScale.git synced 2025-08-23 08:43:15 +02:00

Set max fat to 60%

Min water + min muscle is 40%, so 60% seems like a better max for
fat. Also, it gives a nicer gauge view.
This commit is contained in:
Erik Johansson
2017-11-21 00:40:37 +01:00
parent 89b732aada
commit 44a4fa8638

View File

@@ -77,7 +77,7 @@ public class FatMeasurementView extends MeasurementView {
@Override
public float getMaxValue() {
return 80;
return 60;
}
}