From 3233ecbfde71bf27089fb72984370c424c784897 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 15 Dec 2022 18:14:09 +0100 Subject: [PATCH] fixup inverse/flat flags no longer set to true by default --- config.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.cpp b/config.cpp index 74b3d7c3..69b8e522 100644 --- a/config.cpp +++ b/config.cpp @@ -840,11 +840,11 @@ EX void initConfig() { param_b(geom3::auto_configure, "auto_configure_3d", "auto_configure_3d") -> editable("set 3D settings automatically", 'A'); - param_b(geom3::inverted_embedding, "inverted_3d", "inverted_3d") + param_b(geom3::inverted_embedding, "inverted_3d", false) -> editable("invert convex/concave", 'I') -> set_reaction([] { geom3::switch_fpp(); geom3::switch_fpp(); }); - param_b(geom3::flat_embedding, "flat_3d", "flat_3d") + param_b(geom3::flat_embedding, "flat_3d", false) -> editable("flat, not equidistant", 'F') -> set_reaction([] { geom3::switch_fpp(); geom3::switch_fpp(); });