[Bf-blender-cvs] [a3ef7707621] soc-2021-curves: Fixed unused bezt_only param

Dilith Jayakody noreply at git.blender.org
Thu Feb 24 04:44:10 CET 2022


Commit: a3ef770762114776309e5cc993d04dfd0e4c684f
Author: Dilith Jayakody
Date:   Sun Feb 13 17:22:17 2022 +0530
Branches: soc-2021-curves
https://developer.blender.org/rBa3ef770762114776309e5cc993d04dfd0e4c684f

Fixed unused bezt_only param

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

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

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

diff --git a/source/blender/editors/curve/editcurve_pen.c b/source/blender/editors/curve/editcurve_pen.c
index 275fa70a31f..637afa23716 100644
--- a/source/blender/editors/curve/editcurve_pen.c
+++ b/source/blender/editors/curve/editcurve_pen.c
@@ -423,7 +423,7 @@ static void move_all_selected_points(ListBase *nurbs,
       }
       BKE_nurb_handles_calc(nu);
     }
-    else {
+    else if (!bezt_only) {
       for (int i = 0; i < nu->pntsu; i++) {
         BPoint *bp = nu->bp + i;
         if (bp->f1 & SELECT) {
diff --git a/source/tools b/source/tools
index 515e67c1932..09be9913234 160000
--- a/source/tools
+++ b/source/tools
@@ -1 +1 @@
-Subproject commit 515e67c1932bc06f24cb50b621265c2a6e8a25a9
+Subproject commit 09be991323458e9c27a77d6eb15a4ba5e5eb654a



More information about the Bf-blender-cvs mailing list