Merge pull request #1733 from Philoul/Fix/ATTotalBasal

Fix Total Basal missing in Autotune Results
This commit is contained in:
Milos Kozak 2022-05-16 09:29:13 +02:00 committed by GitHub
commit 19dfaa35ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -422,7 +422,7 @@ class AutotuneFragment : DaggerFragment() {
totalTuned += tuned.basal[h]
layout.addView(toTableRowValue(time, autotunePlugin.pumpProfile.basal[h], tuned.basal[h], "%.3f", tuned.basalUntuned[h].toString()))
}
layout.addView(toTableRowValue("", totalPump, totalTuned, " "))
layout.addView(toTableRowValue("", totalPump, totalTuned, "%.3f", " "))
}
}
)