diff --git a/sleepyhead/daily.cpp b/sleepyhead/daily.cpp
index 382245ac..95064c89 100644
--- a/sleepyhead/daily.cpp
+++ b/sleepyhead/daily.cpp
@@ -985,15 +985,15 @@ QString Daily::getCPAPInformation(Day * cpap)
.arg(cpap->settings_max(CPAP_IPAP),0,'f',1);
}
- if (cpap->settingExists(CPAP_PS)) {
+ if (cpap->settingExists(CPAP_PSMin)) {
+ EventDataType psl=cpap->settings_min(CPAP_PSMin);
+ EventDataType psh=cpap->settings_max(CPAP_PSMax);
+ html+=QString(STR_TR_PS+": %1-%2"+STR_UNIT_CMH2O+"
")
+ .arg(psl,0,'f',1)
+ .arg(psh,0,'f',1);
+ } else if (cpap->settingExists(CPAP_PS)) {
html+=QString(STR_TR_PS+": %1"+STR_UNIT_CMH2O+"
")
.arg(cpap->settings_max(CPAP_PS),0,'f',1);
- } else if (cpap->settingExists(CPAP_PSMin)) {
- EventDataType psl=cpap->settings_min(CPAP_PSMin);
- EventDataType psh=cpap->settings_max(CPAP_PSMax);
- html+=QString(STR_TR_PS+": %1-%2"+STR_UNIT_CMH2O+"
")
- .arg(psl,0,'f',1)
- .arg(psh,0,'f',1);
}
}
html+="\n";
diff --git a/sleepyhead/docs/update_notes.html b/sleepyhead/docs/update_notes.html
index 4da25681..fc79db47 100644
--- a/sleepyhead/docs/update_notes.html
+++ b/sleepyhead/docs/update_notes.html
@@ -2,7 +2,7 @@
Sleep Well!
diff --git a/sleepyhead/version.h b/sleepyhead/version.h index 7887b332..ffd4fa49 100644 --- a/sleepyhead/version.h +++ b/sleepyhead/version.h @@ -17,7 +17,7 @@ const int major_version = 0; const int minor_version = 9; const int revision_number = 4; -const int release_number = 4; +const int release_number = 5; #ifdef UNSTABLE_BUILD