Fix #106094: Snap curves to surface operator does not update geometry

Snapping changes positions, but these were not tagged for update.

Pull Request: https://projects.blender.org/blender/blender/pulls/106104
This commit is contained in:
Philipp Oeser
2023-03-27 09:37:57 +02:00
committed by Philipp Oeser
parent 3d06905ac4
commit 3b4725fb62

View File

@@ -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);
}