diff options
author | Robert C. Helling <helling@atdotde.de> | 2017-11-24 14:17:01 +0100 |
---|---|---|
committer | Robert C. Helling <helling@atdotde.de> | 2017-11-25 20:13:01 +0100 |
commit | 088db5e12be569ea85fc2ac34c22413a30090cba (patch) | |
tree | 535b7c07ce0652c3d602223699b8e63a4d6ec6a3 /qt-models/diveplannermodel.cpp | |
parent | 8e21a65653514d9340ef45c9b9c53dfe5d280350 (diff) | |
download | subsurface-088db5e12be569ea85fc2ac34c22413a30090cba.tar.gz |
Hand planner variables to profile
Pass the planner state struct to the profile computation so it can use
deco_time and first ceiling to display VPM-B ceiling.
Signed-off-by: Robert C. Helling <helling@atdotde.de>
Diffstat (limited to 'qt-models/diveplannermodel.cpp')
-rw-r--r-- | qt-models/diveplannermodel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-models/diveplannermodel.cpp b/qt-models/diveplannermodel.cpp index 153771c08..96b5b9c0a 100644 --- a/qt-models/diveplannermodel.cpp +++ b/qt-models/diveplannermodel.cpp @@ -924,6 +924,7 @@ void DivePlannerPointsModel::createTemporaryPlan() struct deco_state plan_deco_state; plan(&plan_deco_state, &diveplan, &displayed_dive, DECOTIMESTEP, stoptable, &cache, isPlanner(), false); //QtConcurrent::run(this, &DivePlannerPointsModel::computeVariations, &ds_after_previous_dives); + final_deco_state = plan_deco_state; emit calculatedPlanNotes(); } // throw away the cache |