超量显示改为量程溢出

This commit is contained in:
mazengfei
2026-05-19 14:42:29 +08:00
parent a6ce3a1ed3
commit dc91cdfa2e
@@ -459,7 +459,7 @@ class MasterScaleActivity : BaseActivity() {
private fun stateStr(state: Int?) = when (state) {
WeightUtil.STATE_STABLE -> "稳定"
WeightUtil.STATE_UNSTABLE -> "不稳定"
WeightUtil.STATE_OVER_WEIGHT -> ""
WeightUtil.STATE_OVER_WEIGHT -> "程溢出"
null -> ""
else -> "$state"
}