summaryrefslogtreecommitdiffstats
path: root/subsurfacestartup.c
diff options
context:
space:
mode:
authorGravatar Anton Lundin <glance@acc.umu.se>2014-07-19 13:36:57 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-07-19 10:24:07 -0700
commit60c4587be68c8996bbcc87a1c38bf0b4ca9f9f56 (patch)
treefe3bc1e502ed2755ec69191061393b9a956776d2 /subsurfacestartup.c
parent17bcd1bc6085013877888792754f52ce6b375aea (diff)
downloadsubsurface-60c4587be68c8996bbcc87a1c38bf0b4ca9f9f56.tar.gz
De-duplicate planner default settings
All other default settings we get from subsurfacestartup.c's initialization of the prefs struct. The planner had its defaults there and in the retrieve of the settings from QSettings. This changes so the defaults for planner settings will be read from the defaults prefs struct as all other settings. Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurfacestartup.c')
-rw-r--r--subsurfacestartup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/subsurfacestartup.c b/subsurfacestartup.c
index 29d3ddd11..3e6e9288d 100644
--- a/subsurfacestartup.c
+++ b/subsurfacestartup.c
@@ -42,8 +42,8 @@ struct preferences default_prefs = {
.decopo2 = 1600,
.doo2breaks = false,
.drop_stone_mode = false,
- .bottomsac = 20,
- .decosac = 17,
+ .bottomsac = 20000,
+ .decosac = 17000,
.show_pictures_in_profile = true
};