Undo that last one... it didn't need changing

This commit is contained in:
Mark Watkins 2016-03-04 10:52:26 +10:00
parent e0bd14bc2f
commit 3e5dcadccb
3 changed files with 3 additions and 3 deletions

View File

@ -136,7 +136,7 @@ EventDataType Day::calcMiddle(ChannelID code)
}
EventDataType Day::calcMax(ChannelID code)
{
return p_profile->general->prefCalcMax() ? percentile(code, 0.99f) : Max(code);
return p_profile->general->prefCalcMax() ? percentile(code, 0.995f) : Max(code);
}
EventDataType Day::calcPercentile(ChannelID code)
{

View File

@ -1173,7 +1173,7 @@ QString Daily::getStatisticsInfo(Day * day)
float percentile=p_profile->general->prefCalcPercentile()/100.0;
SummaryType ST_max=p_profile->general->prefCalcMax() ? ST_PERC : ST_MAX;
const EventDataType maxperc=0.99F;
const EventDataType maxperc=0.995F;
QString midname;
if (ST_mid==ST_WAVG) midname=STR_TR_WAvg;

View File

@ -137,7 +137,7 @@ Overview::Overview(QWidget *parent, gGraphView *shared) :
if (mididx == 2) { ST_mid = ST_AVG; }
SummaryType ST_max = p_profile->general->prefCalcMax() ? ST_PERC : ST_MAX;
const EventDataType maxperc = 0.99F;
const EventDataType maxperc = 0.995F;
US = createGraph(STR_GRAPH_SessionTimes, tr("Session Times"), tr("Session Times\n(hours)"), YT_Time);
SET = createGraph("Settings", STR_TR_Settings, STR_TR_Settings);