diff options
author | Robert C. Helling <helling@atdotde.de> | 2017-09-19 14:38:38 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-09-20 08:54:41 -0700 |
commit | 5b080beddef3e08b86eb53448e737b4867a50c1a (patch) | |
tree | d858d5d68a0b52b30f88d74f2bdf494418265bff /qt-models/diveplannermodel.cpp | |
parent | a6f186279fcce9631623b94bfdc00fa3fd071b4c (diff) | |
download | subsurface-5b080beddef3e08b86eb53448e737b4867a50c1a.tar.gz |
Remove option to apply GFlow at maxdepth
This option should have never been there. This is not how
gradient factors are supposed to work. It would only trick
users to use the wrong value..
Signed-off-by: Robert C. Helling <helling@atdotde.de>
Diffstat (limited to 'qt-models/diveplannermodel.cpp')
-rw-r--r-- | qt-models/diveplannermodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-models/diveplannermodel.cpp b/qt-models/diveplannermodel.cpp index e65bb01eb..ca84fd597 100644 --- a/qt-models/diveplannermodel.cpp +++ b/qt-models/diveplannermodel.cpp @@ -208,7 +208,7 @@ void DivePlannerPointsModel::setPlanMode(Mode m) // the planner may reset our GF settings that are used to show deco // reset them to what's in the preferences if (m != PLAN) { - set_gf(prefs.gflow, prefs.gfhigh, prefs.gf_low_at_maxdepth); + set_gf(prefs.gflow, prefs.gfhigh); set_vpmb_conservatism(prefs.vpmb_conservatism); } } |