summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Miika Turkia <miika.turkia@gmail.com>2014-12-14 21:15:52 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-12-14 11:42:29 -0800
commit4875de45e6ebad753142f09e30cdf33f4f5a2986 (patch)
tree5c19d7f9045712ac443579bc7c6de8250cd6a054
parent0e3fb549bd3a3c8bfad89a15a9abb7d20722cd31 (diff)
downloadsubsurface-4875de45e6ebad753142f09e30cdf33f4f5a2986.tar.gz
Default some graphs to false
These values are treated as false upon starting Subsurface. Thus they should be set to false as well. Otherwise extra graphs are drawn to the profile when exiting the preferences dialog. Fixes #783 Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--subsurfacestartup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/subsurfacestartup.c b/subsurfacestartup.c
index 22a41e4a6..8847ab36a 100644
--- a/subsurfacestartup.c
+++ b/subsurfacestartup.c
@@ -18,8 +18,8 @@ struct preferences default_prefs = {
.mod = false,
.modpO2 = 1.6,
.ead = false,
- .hrgraph = true,
- .percentagegraph = true,
+ .hrgraph = false,
+ .percentagegraph = false,
.dcceiling = true,
.redceiling = false,
.calcceiling = false,