mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
desktop UI: use salinity of current DC, not first DC
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
eac87f6481
commit
c03731b220
1 changed files with 2 additions and 2 deletions
|
@ -197,7 +197,7 @@ void TabDiveInformation::checkDcSalinityOverWritten()
|
|||
{
|
||||
if (!current_dive)
|
||||
return;
|
||||
int dc_value = current_dive->dc.salinity;
|
||||
int dc_value = current_dc->salinity;
|
||||
int user_value = current_dive->user_salinity;
|
||||
bool show_indicator = false;
|
||||
if (user_value != dc_value)
|
||||
|
@ -272,7 +272,7 @@ void TabDiveInformation::updateData()
|
|||
void TabDiveInformation::on_waterTypeCombo_activated(int index) {
|
||||
Q_UNUSED(index)
|
||||
int combobox_salinity = 0;
|
||||
int dc_salinity = current_dive->dc.salinity;
|
||||
int dc_salinity = current_dc->salinity;
|
||||
switch(ui->waterTypeCombo->currentIndex()) {
|
||||
case FRESHWATER:
|
||||
combobox_salinity = FRESHWATER_SALINITY;
|
||||
|
|
Loading…
Reference in a new issue