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 /tests | |
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 'tests')
-rw-r--r-- | tests/testpreferences.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/testpreferences.cpp b/tests/testpreferences.cpp index db50aff5d..a80ade89f 100644 --- a/tests/testpreferences.cpp +++ b/tests/testpreferences.cpp @@ -132,8 +132,6 @@ void TestPreferences::testPreferences() TEST(tecDetails->zoomedPlot(), true); tecDetails->setShowSac(true); TEST(tecDetails->showSac(), true); - tecDetails->setGfLowAtMaxDepth(true); - TEST(tecDetails->gfLowAtMaxDepth(), true); tecDetails->setDisplayUnusedTanks(true); TEST(tecDetails->displayUnusedTanks(), true); tecDetails->setShowAverageDepth(true); @@ -175,8 +173,6 @@ void TestPreferences::testPreferences() TEST(tecDetails->zoomedPlot(), false); tecDetails->setShowSac(false); TEST(tecDetails->showSac(), false); - tecDetails->setGfLowAtMaxDepth(false); - TEST(tecDetails->gfLowAtMaxDepth(), false); tecDetails->setDisplayUnusedTanks(false); TEST(tecDetails->displayUnusedTanks(), false); tecDetails->setShowAverageDepth(false); |