diff --git a/Resources.qrc b/Resources.qrc
index 6ab2e34d..09eb9209 100644
--- a/Resources.qrc
+++ b/Resources.qrc
@@ -14,5 +14,6 @@
icons/refresh.png
docs/usage.html
icons/oximeter.png
+ docs/0.0.gif
diff --git a/daily.cpp b/daily.cpp
index 81f3af6e..2844195d 100644
--- a/daily.cpp
+++ b/daily.cpp
@@ -724,9 +724,9 @@ void Daily::Load(QDate date)
float vsi=cpap->count(CPAP_VSnore)/cpap->hours();
float fli=cpap->count(CPAP_FlowLimit)/cpap->hours();
- float p90=cpap->p90(CPAP_Pressure);
- eap90=cpap->p90(CPAP_EPAP);
- iap90=cpap->p90(CPAP_IPAP);
+ //float p90=cpap->p90(CPAP_Pressure);
+ //eap90=cpap->p90(CPAP_EPAP);
+ //iap90=cpap->p90(CPAP_IPAP);
QString submodel=tr("Unknown Model");
//html+="
"+tr("Machine Information")+" |
\n";
@@ -781,14 +781,18 @@ void Daily::Load(QDate date)
// ^^ Scratch that.. pie now includes text..
if (pref["EnableGraphSnapshots"].toBool()) { // AHI Pie Chart
- html+="\n"+tr("Event Breakdown")+" |
\n";
- G_AHI->setFixedSize(gwwidth,120);
- QPixmap pixmap=G_AHI->renderPixmap(gwwidth,120,false); //gwwidth,gwheight,false);
- QByteArray byteArray;
- QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray
- buffer.open(QIODevice::WriteOnly);
- pixmap.save(&buffer, "PNG");
- html += " |
\n";
+ if (ahi+rei+fli>0) {
+ html+="\n"+tr("Event Breakdown")+" |
\n";
+ G_AHI->setFixedSize(gwwidth,120);
+ QPixmap pixmap=G_AHI->renderPixmap(gwwidth,120,false); //gwwidth,gwheight,false);
+ QByteArray byteArray;
+ QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray
+ buffer.open(QIODevice::WriteOnly);
+ pixmap.save(&buffer, "PNG");
+ html += " |
\n";
+ } else {
+ html += " |
\n";
+ }
}
}
html+=""
diff --git a/oximetry.cpp b/oximetry.cpp
index f68588af..9b3440a1 100644
--- a/oximetry.cpp
+++ b/oximetry.cpp
@@ -265,7 +265,7 @@ void Oximetry::on_RunButton_toggled(bool checked)
sess->SetSessionID(starttime/1000L);
sess->setMin(OXI_Pulse,ev_pulse->min());
- sess->setMax(OXI_Pulse,ev_pulse->min());
+ sess->setMax(OXI_Pulse,ev_pulse->max());
sess->setFirst(OXI_Pulse,ev_pulse->first());
sess->setLast(OXI_Pulse,ev_pulse->last());
sess->avg(OXI_Pulse);
@@ -284,11 +284,6 @@ void Oximetry::on_RunButton_toggled(bool checked)
//sess->min(OXI_SPO2);
//sess->max(OXI_SPO2);
- sess->setMin(OXI_SPO2,ev_spo2->min());
- sess->setMax(OXI_SPO2,ev_spo2->max());
- sess->setFirst(OXI_SPO2,ev_spo2->first());
- sess->setLast(OXI_SPO2,ev_spo2->last());
-
//sess->min(OXI_Plethysomogram);
//sess->max(OXI_Plethysomogram);
sess->avg(OXI_Plethysomogram);