setting the MAX using session->calcMax fix one issue, but it caused a changed of the device setting which is much worse. so related to hard coded settings

This commit is contained in:
LoudSnorer 2023-11-17 12:48:08 -05:00
parent 97a5da3c43
commit f6cb6312f4

View File

@ -324,7 +324,8 @@ void LoadEvents(const QString& session_folder_path, Session* session, const Usag
UpdateEvents(event_type, events, session);
});
session->settings[CPAP_PressureMin] = 4.0;
session->settings[CPAP_PressureMax] = qMax(session->calcMax(CPAP_Pressure),session->calcMax(CPAP_IPAP));
session->settings[CPAP_PressureMax] = 20.0 ; // was qMax(session->calcMax(CPAP_Pressure),session->calcMax(CPAP_IPAP)); // this results in a change of device settings.
}
template <typename T>