From eb4981d3be32701bbcbe1313a0ffba74a7e2463c Mon Sep 17 00:00:00 2001 From: Guy Scharf Date: Mon, 22 Feb 2021 08:59:44 -0700 Subject: [PATCH] On Daily page, show right statistics column as 99.5% or Max, as appropriate. --- oscar/daily.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oscar/daily.cpp b/oscar/daily.cpp index 315e1ce1..84b8a86f 100644 --- a/oscar/daily.cpp +++ b/oscar/daily.cpp @@ -1296,7 +1296,7 @@ QString Daily::getStatisticsInfo(Day * day) .arg(STR_TR_Min) .arg(midname) .arg(tr("%1%2").arg(percentile*100,0,'f',0).arg(STR_UNIT_Percentage)) - .arg(STR_TR_Max); + .arg(ST_max == ST_MAX?STR_TR_Max:tr("99.5%")); ChannelID chans[]={ CPAP_Pressure,CPAP_PressureSet,CPAP_EPAP,CPAP_EPAPSet,CPAP_IPAP,CPAP_IPAPSet,CPAP_PS,CPAP_PTB, @@ -1650,7 +1650,7 @@ void Daily::Load(QDate date) if (hours>0) { htmlLeftAHI="\n"; - // Is this debugging code left behind? + // Show application font, for debugging font issues // QString appFont = QApplication::font().toString(); // htmlLeftAHI+=QString("").arg(appFont);
%1