From e01bf7a92ecad3c64d0b1ae176f402d2638e246c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 20 Nov 2020 01:35:26 +1100 Subject: Fix T82540: Smart UV project ignores seams The seam check was missed in 9296ba867462f7ff3c55bc0c9129af4121243bed which calculates islands from the BMesh. --- source/blender/editors/include/ED_uvedit.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/editors/include') diff --git a/source/blender/editors/include/ED_uvedit.h b/source/blender/editors/include/ED_uvedit.h index a55e97fff72..2066d7da511 100644 --- a/source/blender/editors/include/ED_uvedit.h +++ b/source/blender/editors/include/ED_uvedit.h @@ -241,6 +241,7 @@ struct UVPackIsland_Params { int rotate_align_axis : 2; uint only_selected_uvs : 1; uint only_selected_faces : 1; + uint use_seams : 1; uint correct_aspect : 1; }; void ED_uvedit_pack_islands_multi(const Scene *scene, -- cgit v1.2.3