diff --git a/Htmldocs/release_notes.html b/Htmldocs/release_notes.html
index 72858ca2..6de6510e 100644
--- a/Htmldocs/release_notes.html
+++ b/Htmldocs/release_notes.html
@@ -17,6 +17,7 @@
- [new] Skip first 20 seconds of TiVol, RR, and MinVent in ResMed loader.
- [new] Add ResMed 39423 Canadian Autoset to tested list.
+ - [new] Show channel description when hovering over index name on Daily page.
- [fix] Fix pressure values for AutoForHer mode on AS1x.
- [fix] Fix missing oximetry and motion waveforms on Overview pages.
- [fix] Fix rare problem of minimum pressure shown as zero on Overview and Statistics pages.
@@ -34,13 +35,13 @@
- DreamStation CPAP Pro with Auto-Trial (401X150)
- [fix] Correct selection of CPAP and AutoForHer modes for ResMed AS11 modes.
- {fix} Skip first 10 seconds of pressure data for ResMed grapths and statistics.
[new] Choose AS11 data instead of AS10 data if both are present on the SD card.
[new] Add support for new settings codes in recently manufactured 700X110 DreamStations.
[new] Add 95% flow limitation to Therapy Efficacy section on Statistics page.
[new] Add date range option to Statistics page.
[new] Improve appearance and operation of event types and graphs comboboxes on Daily and Overview pages.
+ [fix] Correct selection of CPAP and AutoForHer modes for ResMed AS11 modes.
+ {fix} Skip first 10 seconds of pressure data for ResMed grapths and statistics.
[fix] Correct SleepStyle machines sometimes identified as Icon machines.
[fix] Improve event flag position in flow graph for DV6 machines.
[fix] --datadir option now allows fully qualified paths on Mac and Linux.
diff --git a/oscar/daily.cpp b/oscar/daily.cpp
index e897c043..9dc301f5 100644
--- a/oscar/daily.cpp
+++ b/oscar/daily.cpp
@@ -1377,7 +1377,7 @@ QString Daily::getStatisticsInfo(Day * day)
// QString oldtip = tooltip;
tooltip.replace("'", "'");
-// qDebug() << schema::channel[code].label() << "old tooltip" << oldtip << "tooltip" << tooltip ;
+// qDebug() << schema::channel[code].label() << "old tooltip" << oldtip << "; new tooltip" << tooltip ;
html+=QString("%1 | %2 | %3 | %4 | %5 |
")
.arg(schema::channel[code].label())
@@ -1753,9 +1753,16 @@ void Daily::Load(QDate date)
// percentage of patient-triggered breaths, which is much more useful
// than the duration of timed breaths per hour.
values[code] = val;
+ QString tooltip=schema::channel[code].description();
+ tooltip.replace("'", "'");
QColor altcolor = (brightness(chan.defaultColor()) < 0.3) ? Qt::white : Qt::black; // pick a contrasting color
- htmlLeftIndices+=QString("%3 | %4 |
")
- .arg(chan.defaultColor().name()).arg(altcolor.name()).arg(chan.fullname()).arg(data).arg(code);
+ htmlLeftIndices+=QString("%3 | %4 |
")
+ .arg(chan.defaultColor().name())
+ .arg(altcolor.name())
+ .arg(chan.fullname())
+ .arg(data)
+ .arg(code)
+ .arg(tooltip);
}
htmlLeftIndices+="
";