mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
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>
This commit is contained in:
parent
0e3fb549bd
commit
4875de45e6
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue