From 79015e17f890eee41fb4f8894468e17478ae3657 Mon Sep 17 00:00:00 2001 From: Miika Turkia Date: Sat, 12 Jul 2014 13:12:23 +0300 Subject: [PATCH] Fix inserting gaschange events Use a macro that works to get the current DC. Fixes #613 Signed-off-by: Miika Turkia Signed-off-by: Dirk Hohndel --- qt-ui/profile/profilewidget2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt-ui/profile/profilewidget2.cpp b/qt-ui/profile/profilewidget2.cpp index b0f221639..dfe514f28 100644 --- a/qt-ui/profile/profilewidget2.cpp +++ b/qt-ui/profile/profilewidget2.cpp @@ -1042,7 +1042,7 @@ void ProfileWidget2::changeGas() int seconds = timeAxis->valueAt(scenePos); validate_gas(gas.toUtf8().constData(), &gasmix); - add_gas_switch_event(&displayed_dive, get_dive_dc(&displayed_dive, diveComputer), seconds, get_gasidx(&displayed_dive, &gasmix)); + add_gas_switch_event(&displayed_dive, current_dc, seconds, get_gasidx(&displayed_dive, &gasmix)); // this means we potentially have a new tank that is being used and needs to be shown fixup_dive(&displayed_dive);