Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2004-10-16 16:27:16 +0400
committerTon Roosendaal <ton@blender.org>2004-10-16 16:27:16 +0400
commit96f2f71cb176a9953f6bf9b9a222601c9c525066 (patch)
tree02c92658b6023f8c6f0b812453e55fa579abb479 /source/blender/src/editmesh_add.c
parent87663f8996331257c5ab6aff6239a5a14b2dfdfd (diff)
Fix for #1650
"Clear FGon" didn't call essential EM_fgon_flags(), to rebuild the lookup table codes for polygons. This causes former fgon faces to become not selectable
Diffstat (limited to 'source/blender/src/editmesh_add.c')
-rw-r--r--source/blender/src/editmesh_add.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/src/editmesh_add.c b/source/blender/src/editmesh_add.c
index 9f58ed50026..7d7b2500ebd 100644
--- a/source/blender/src/editmesh_add.c
+++ b/source/blender/src/editmesh_add.c
@@ -189,6 +189,7 @@ static void make_fgon(void)
}
}
allqueue(REDRAWVIEW3D, 0);
+ EM_fgon_flags(); // redo flags and indices for fgons
makeDispList(G.obedit);
BIF_undo_push("Clear FGon");
return;