From 1a7d961fb70919d7ec3c1881a44ab387f11cd996 Mon Sep 17 00:00:00 2001 From: Philipp Oeser Date: Fri, 24 Mar 2023 13:27:22 +0100 Subject: [PATCH] Fix #106094: Snap curves to surface operator does not update geometry Snapping changes positions, but these were not tagged for update. --- source/blender/editors/curves/intern/curves_ops.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/editors/curves/intern/curves_ops.cc b/source/blender/editors/curves/intern/curves_ops.cc index 960be0b5032..196bfc15b0e 100644 --- a/source/blender/editors/curves/intern/curves_ops.cc +++ b/source/blender/editors/curves/intern/curves_ops.cc @@ -695,6 +695,7 @@ static void snap_curves_to_surface_exec_object(Object &curves_ob, } } + curves.tag_positions_changed(); DEG_id_tag_update(&curves_id.id, ID_RECALC_GEOMETRY); } -- 2.30.2