Fix YaxisTime layer for 24 hours display.

This commit is contained in:
LoudSnorer 2023-05-14 18:30:22 -04:00
parent 3d773dd5b0
commit 92742fee9e

View File

@ -327,6 +327,7 @@ bool gYAxis::mouseDoubleClickEvent(QMouseEvent *event, gGraph *graph)
const QString gYAxisTime::Format(EventDataType v, int dp)
{
// it seems that v is the total duration of the sleep from 12 noon
int h = int(v) % 24;
int m = int(v * 60) % 60;
int s = int(v * 3600) % 60;
@ -337,9 +338,9 @@ const QString gYAxisTime::Format(EventDataType v, int dp)
h >= 12 ? pm[0] = 'a' : pm[0] = 'p';
h %= 12;
if (h == 0) { h = 12; }
} else {
h < 12 ? h+=12 : h-=12;
pm[0] = 0;
}