[Bf-blender-cvs] [12cb8eea43c] soc-2021-curves: Set close spline default to false

dilithjay noreply at git.blender.org
Sat Dec 25 13:28:03 CET 2021


Commit: 12cb8eea43c24ae19b2a6d600d635932b88f8aa9
Author: dilithjay
Date:   Sat Dec 25 15:50:34 2021 +0530
Branches: soc-2021-curves
https://developer.blender.org/rB12cb8eea43c24ae19b2a6d600d635932b88f8aa9

Set close spline default to false

===================================================================

M	source/blender/editors/curve/editcurve_pen.c

===================================================================

diff --git a/source/blender/editors/curve/editcurve_pen.c b/source/blender/editors/curve/editcurve_pen.c
index d04b15a6588..7e43819a70c 100644
--- a/source/blender/editors/curve/editcurve_pen.c
+++ b/source/blender/editors/curve/editcurve_pen.c
@@ -1273,7 +1273,7 @@ void CURVE_OT_pen(wmOperatorType *ot)
       ot->srna, "move_point", false, "Move Point", "Move a point or its handles");
   prop = RNA_def_boolean(ot->srna,
                          "close_spline",
-                         true,
+                         false,
                          "Close Spline",
                          "Make a spline cyclic by clicking endpoints");
 }



More information about the Bf-blender-cvs mailing list