Merge branch 'master' into translations

This commit is contained in:
ArieKlerk 2020-03-27 08:57:15 +01:00
commit 6bcc0180ae
3 changed files with 13 additions and 9 deletions

View File

@ -6907,7 +6907,7 @@ bool PRS1DataChunk::ParseSettingsF0V6(const unsigned char* data, int size)
break; break;
case 0x40: // new to 400G, also seen on 500X110, alternate tubing type? appears after 0x39 and before 0x3c case 0x40: // new to 400G, also seen on 500X110, alternate tubing type? appears after 0x39 and before 0x3c
CHECK_VALUE(len, 1); CHECK_VALUE(len, 1);
if (data[pos] < 0 || data[pos] > 3) UNEXPECTED_VALUE(data[pos], "0-3"); // 0 = 22mm, 1 = 15mm, 2 = 15HT, 3 = 12mm if (data[pos] > 3) UNEXPECTED_VALUE(data[pos], "0-3"); // 0 = 22mm, 1 = 15mm, 2 = 15HT, 3 = 12mm
this->ParseTubingTypeV3(data[pos]); this->ParseTubingTypeV3(data[pos]);
break; break;
case 0x3c: // View Optional Screens case 0x3c: // View Optional Screens
@ -7467,7 +7467,7 @@ bool PRS1DataChunk::ParseSettingsF5V3(const unsigned char* data, int size)
break; break;
case 0x3b: // Tubing Type case 0x3b: // Tubing Type
CHECK_VALUE(len, 1); CHECK_VALUE(len, 1);
if (data[pos] < 0 || data[pos] > 2) UNEXPECTED_VALUE(data[pos], "0-2"); // 15HT = 2, 15 = 1, 22 = 0, though report only says "15" for 15HT if (data[pos] > 2) UNEXPECTED_VALUE(data[pos], "0-2"); // 15HT = 2, 15 = 1, 22 = 0, though report only says "15" for 15HT
this->ParseTubingTypeV3(data[pos]); this->ParseTubingTypeV3(data[pos]);
break; break;
case 0x3c: // View Optional Screens case 0x3c: // View Optional Screens

View File

@ -135,6 +135,7 @@ void MainWindow::SetupGUI()
ui->action_Preferences->setMenuRole(QAction::PreferencesRole); ui->action_Preferences->setMenuRole(QAction::PreferencesRole);
#endif #endif
ui->actionPrint_Report->setShortcuts(QKeySequence::Print); ui->actionPrint_Report->setShortcuts(QKeySequence::Print);
ui->action_Fullscreen->setShortcuts(QKeySequence::FullScreen);
ui->actionLine_Cursor->setChecked(AppSetting->lineCursorMode()); ui->actionLine_Cursor->setChecked(AppSetting->lineCursorMode());
ui->actionPie_Chart->setChecked(AppSetting->showPieChart()); ui->actionPie_Chart->setChecked(AppSetting->showPieChart());
@ -2586,16 +2587,19 @@ void MainWindow::on_actionPurgeCurrentDaysOximetry_triggered()
} }
QList<Session *> sessionlist=day->getSessions(MT_OXIMETER); QList<Session *> sessionlist=day->getSessions(MT_OXIMETER);
QSet<Machine *> machines;
for (auto & sess : sessionlist) { for (auto & sess : sessionlist) {
machines += sess->machine();
sess->Destroy(); sess->Destroy();
delete sess; delete sess;
} }
// TODO: Fix this. It deletes the underlying session data file in the machine,
// but not from the machine's summary cache. This results in future launches // We have to update the summary cache for the affected machine(s),
// of OSCAR thinking the day has oximetry data, but then it isn't really there. // otherwise OSCAR will still think this day has oximetry data at next launch.
// Currently this is only useful for reimporting a single day, which the purge for (auto & mach : machines) {
// permits, and which in turn creates a new data file for that day. mach->SaveSummaryCache();
}
if (daily) { if (daily) {

View File

@ -2887,7 +2887,7 @@ p, li { white-space: pre-wrap; }
<property name="title"> <property name="title">
<string>&amp;Advanced</string> <string>&amp;Advanced</string>
</property> </property>
<widget class="QMenu" name="menuPurge_Oximetery_Data"> <widget class="QMenu" name="menuPurge_Oximetry_Data">
<property name="title"> <property name="title">
<string>Purge Oximetry Data</string> <string>Purge Oximetry Data</string>
</property> </property>
@ -2901,7 +2901,7 @@ p, li { white-space: pre-wrap; }
<addaction name="actionPurge_Current_Day"/> <addaction name="actionPurge_Current_Day"/>
<addaction name="menuPurge_CPAP_Data"/> <addaction name="menuPurge_CPAP_Data"/>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="menuPurge_Oximetery_Data"/> <addaction name="menuPurge_Oximetry_Data"/>
</widget> </widget>
<widget class="QMenu" name="menu_Rebuild_CPAP_Data"> <widget class="QMenu" name="menu_Rebuild_CPAP_Data">
<property name="title"> <property name="title">