[Bf-blender-cvs] [d2451eccd54] soc-2021-curves: Comment fix

Dilith Jayakody noreply at git.blender.org
Sun Apr 3 17:34:20 CEST 2022


Commit: d2451eccd547bf21ebb59255498d89e409869f0b
Author: Dilith Jayakody
Date:   Sat Mar 26 00:18:37 2022 +0530
Branches: soc-2021-curves
https://developer.blender.org/rBd2451eccd547bf21ebb59255498d89e409869f0b

Comment fix

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

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 e1237a38d46..f102f5ff8db 100644
--- a/source/blender/editors/curve/editcurve_pen.c
+++ b/source/blender/editors/curve/editcurve_pen.c
@@ -1186,7 +1186,7 @@ static void move_segment(ViewContext *vc, MoveSegmentData *seg_data, const wmEve
   }
 }
 
-/* Toggle between #free and #align handles of the given #BezTriple */
+/* Toggle between #free and #align handles of the all selected #BezTriple */
 static void toggle_bezt_free_align_handles(ListBase *nurbs)
 {
   FOREACH_SELECTED_BEZT_BEGIN(bezt, nurbs)
@@ -1196,8 +1196,6 @@ static void toggle_bezt_free_align_handles(ListBase *nurbs)
   else {
     bezt->h1 = bezt->h2 = HD_ALIGN;
   }
-
-  BKE_nurb_handles_calc(nu);
   FOREACH_SELECTED_BEZT_END
 }



More information about the Bf-blender-cvs mailing list