mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
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:
parent
97a5da3c43
commit
f6cb6312f4
@ -324,7 +324,8 @@ void LoadEvents(const QString& session_folder_path, Session* session, const Usag
|
|||||||
UpdateEvents(event_type, events, session);
|
UpdateEvents(event_type, events, session);
|
||||||
});
|
});
|
||||||
session->settings[CPAP_PressureMin] = 4.0;
|
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>
|
template <typename T>
|
||||||
|
Loading…
Reference in New Issue
Block a user