Fix the greenbox

This commit is contained in:
Tim Gunn 2020-07-09 00:46:10 +12:00
parent 31b6ce4891
commit a93485a3c0
No known key found for this signature in database
GPG key ID: C9BC1E9D0D0AED8C

View file

@ -655,7 +655,7 @@ class OverviewFragment : DaggerFragment(), View.OnClickListener, OnLongClickList
// If the target is not the same as set in the profile then oref has overridden it
val targetUsed = lastRun?.constraintsProcessed?.targetBG ?: 0.0
if (targetUsed != 0.0 && profile.targetMgdl != targetUsed) {
if (targetUsed != 0.0 && abs(profile.targetMgdl-targetUsed) > 0.01) {
aapsLogger.debug("Adjusted target. Profile: ${profile.targetMgdl} APS: $targetUsed")
overview_temptarget?.text = Profile.toTargetRangeString(targetUsed, targetUsed, Constants.MGDL, units)
overview_temptarget?.setTextColor(resourceHelper.gc(R.color.ribbonTextWarning))