From b53b0a99e0aaac4583236dc748558f8e01708d2c Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Thu, 29 Aug 2019 18:47:25 -0700 Subject: [PATCH] Fix event count formatting in Daily Events tab --- oscar/daily.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/oscar/daily.cpp b/oscar/daily.cpp index 192ce0c0..17ac3115 100644 --- a/oscar/daily.cpp +++ b/oscar/daily.cpp @@ -643,10 +643,12 @@ void Daily::UpdateEventsTree(QTreeWidget *tree,Day *day) if (p_profile->general->showUnknownFlags()) chantype |= schema::UNKNOWN; QList chans = day->getSortedMachineChannels(chantype); + // Go through all the enabled sessions of the day for (QList::iterator s=day->begin();s!=day->end();++s) { Session * sess = *s; if (!sess->enabled()) continue; + // For each session, go through all the channels QHash >::iterator m; for (int c=0; c < chans.size(); ++c) { ChannelID code = chans.at(c); @@ -655,6 +657,7 @@ void Daily::UpdateEventsTree(QTreeWidget *tree,Day *day) drift=(sess->type() == MT_CPAP) ? clockdrift : 0; + // Prepare title for this code, if there are any events QTreeWidgetItem *mcr; if (mcroot.find(code)==mcroot.end()) { int cnt=day->count(code); @@ -676,10 +679,13 @@ void Daily::UpdateEventsTree(QTreeWidget *tree,Day *day) mcr=mcroot[code]; } + // number of digits required for count depends on total for day + int numDigits = ceil(log10(day->count(code)+1)); + + // Now we go through the event list for the *session* (not for the day) for (int z=0;z