[Bf-blender-cvs] [a39cbf32296] soc-2021-curves: Reduced grab threshold

Dilith Jayakody noreply at git.blender.org
Fri Jan 21 19:33:41 CET 2022


Commit: a39cbf32296f05b3b9c2200787fc6df61383fdae
Author: Dilith Jayakody
Date:   Fri Jan 21 23:59:02 2022 +0530
Branches: soc-2021-curves
https://developer.blender.org/rBa39cbf32296f05b3b9c2200787fc6df61383fdae

Reduced grab threshold

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

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 620d3635e41..7f9fa7f8713 100644
--- a/source/blender/editors/curve/editcurve_pen.c
+++ b/source/blender/editors/curve/editcurve_pen.c
@@ -1852,12 +1852,12 @@ void CURVE_OT_pen(wmOperatorType *ot)
   PropertyRNA *prop;
   prop = RNA_def_float(ot->srna,
                        "sel_dist_mul",
-                       0.4f,
+                       0.2f,
                        0.0f,
                        2.0f,
                        "Select Distance",
                        "A multiplier on the default click distance",
-                       0.2f,
+                       0.1f,
                        1.5f);
   prop = RNA_def_enum(ot->srna,
                       "free_toggle",



More information about the Bf-blender-cvs mailing list