From b5af7876dbe4e5e7a1875638930e4ce0c3d9f4ae Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Tue, 12 Aug 2014 05:00:18 +1000 Subject: [PATCH] Fix Selection AHI glitch --- sleepyhead/Graphs/gLineChart.cpp | 14 ++++++++------ sleepyhead/docs/release_notes.html | 1 + 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/sleepyhead/Graphs/gLineChart.cpp b/sleepyhead/Graphs/gLineChart.cpp index f75411f8..b34375ec 100644 --- a/sleepyhead/Graphs/gLineChart.cpp +++ b/sleepyhead/Graphs/gLineChart.cpp @@ -164,6 +164,8 @@ skipcheck: for (int i=0; i < available.size(); ++i) { ChannelID code = available.at(i); + if (!m_day->channelExists(code)) continue; + schema::Channel * chan = &schema::channel[code]; gLineOverlayBar * lob = nullptr; @@ -991,9 +993,9 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion) ahilist.push_back(CPAP_ClearAirway); QList extras; - ahilist.push_back(CPAP_NRI); - ahilist.push_back(CPAP_UserFlag1); - ahilist.push_back(CPAP_UserFlag2); + extras.push_back(CPAP_NRI); + extras.push_back(CPAP_UserFlag1); + extras.push_back(CPAP_UserFlag2); double sum = 0; int cnt = 0; @@ -1025,9 +1027,9 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion) double f = double(cnt) / hours; // / (sum / 3600.0); QString txt = QObject::tr("Duration %1:%2:%3").arg(h,2,10,QChar('0')).arg(m,2,10,QChar('0')).arg(s,2,10,QChar('0')) + " "+ - QObject::tr("AHI %1").arg(f,0,'f',2) +" " + - QObject::tr("Events %1").arg(cnt) + " " + - QObject::tr("Hours %1").arg(hours,0,'f',2); + QObject::tr("AHI %1").arg(f,0,'f',2);// +" " + +// QObject::tr("Events %1").arg(cnt) + " " + +// QObject::tr("Hours %1").arg(hours,0,'f',2); w.renderText(txt,left,top-4); } diff --git a/sleepyhead/docs/release_notes.html b/sleepyhead/docs/release_notes.html index 39d94e64..d4481275 100644 --- a/sleepyhead/docs/release_notes.html +++ b/sleepyhead/docs/release_notes.html @@ -16,6 +16,7 @@
New features & bug fixes in v0.9.7
+
  • New Graph: Time at Pressure
  • Less ugly code hardwiring and more automatic smarts, plus better channel color and name consistencies underneath.
  • Daily panel (left) Sidebar can be toggled on/off with F9
  • Calendar can now be toggled on/off with f10, your preferences will be kept