New Line between each target in Compare Profile

This commit is contained in:
Philoul 2020-07-24 01:10:16 +02:00
parent 4ef40c70c5
commit c94452441f

View file

@ -124,7 +124,7 @@ class ProfileViewerDialog : DaggerDialogFragment() {
profileview_ic.text = ics(profile1, profile2) profileview_ic.text = ics(profile1, profile2)
profileview_isf.text = isfs(profile1, profile2) profileview_isf.text = isfs(profile1, profile2)
profileview_basal.text = basals(profile1, profile2) profileview_basal.text = basals(profile1, profile2)
profileview_target.text = HtmlHelper.fromHtml(formatColors("", profile1.targetList + "<br>", profile2.targetList, "")) profileview_target.text = HtmlHelper.fromHtml(formatColors("", profile1.targetList.replace("\n","<br>") + "<br>", profile2.targetList.replace("\n","<br>"), ""))
basal_graph.show(profile1, profile2) basal_graph.show(profile1, profile2)
} }