diff options
author | Anton Lundin <glance@acc.umu.se> | 2015-09-03 00:00:01 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-09-02 15:26:26 -0700 |
commit | 9212458f23a0a35629020984e43e47a0e40425b4 (patch) | |
tree | b5d582af30e926ec796b3d8af999d403a0d9b39b /qt-ui/configuredivecomputerdialog.cpp | |
parent | 37953d163efd7741bb328b23952df97b01f65a55 (diff) | |
download | subsurface-9212458f23a0a35629020984e43e47a0e40425b4.tar.gz |
Enable the configuration of more OSTC settings
This enables enables you to configure a couple more settings in the
OSTC devices, roughly corresponding to the new ones that can be
configured in the OSTC3 devices.
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/configuredivecomputerdialog.cpp')
-rw-r--r-- | qt-ui/configuredivecomputerdialog.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/qt-ui/configuredivecomputerdialog.cpp b/qt-ui/configuredivecomputerdialog.cpp index 6e01202a7..04c15b1b4 100644 --- a/qt-ui/configuredivecomputerdialog.cpp +++ b/qt-ui/configuredivecomputerdialog.cpp @@ -566,6 +566,9 @@ void ConfigureDiveComputerDialog::populateDeviceDetailsOSTC() deviceDetails->aGFSelectable = ui.aGFSelectableCheckBox_3->isChecked(); deviceDetails->aGFHigh = ui.aGFHighSpinBox_3->value(); deviceDetails->aGFLow = ui.aGFLowSpinBox_3->value(); + deviceDetails->bottomGasConsumption = ui.bottomGasConsumption_3->value(); + deviceDetails->decoGasConsumption = ui.decoGasConsumption_3->value(); + deviceDetails->graphicalSpeedIndicator = ui.graphicalSpeedIndicator_3->isChecked(); //set gas values gas gas1; @@ -932,6 +935,9 @@ setNumberOfDives ui.aGFHighSpinBox_3->setValue(deviceDetails->aGFHigh); ui.aGFLowSpinBox_3->setValue(deviceDetails->aGFLow); ui.numberOfDivesSpinBox_3->setValue(deviceDetails->numberOfDives); + ui.bottomGasConsumption_3->setValue(deviceDetails->bottomGasConsumption); + ui.decoGasConsumption_3->setValue(deviceDetails->decoGasConsumption); + ui.graphicalSpeedIndicator_3->setChecked(deviceDetails->graphicalSpeedIndicator); //load gas 1 values ui.ostcGasTable->setItem(0, 1, new QTableWidgetItem(QString::number(deviceDetails->gas1.oxygen))); |