Page Menu
Home
Search
Configure Global Search
Log In
Files
F19414
bmesh-not-equal.patch
Public
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Authored By
Bill Currie (taniwha)
Nov 13 2013, 4:16 PM
Size
644 B
Subscribers
None
bmesh-not-equal.patch
View Options
--- source/blender/editors/mesh/bmesh_tools.c
+++ source/blender/editors/mesh/bmesh_tools.c
@@ -3869,6 +3869,8 @@ static int select_by_number_vertices_exec(bContext *C, wmOperator *op)
select = 1;
}else if (type == 2 && efa->len > numverts) {
select = 1;
+ }else if (type == 3 && efa->len != numverts) {
+ select = 1;
}
if (select) {
@@ -3888,6 +3890,7 @@ void MESH_OT_select_by_number_vertices(wmOperatorType *ot)
{0, "LESS", 0, "Less Than", ""},
{1, "EQUAL", 0, "Equal To", ""},
{2, "GREATER", 0, "Greater Than", ""},
+ {3, "NOTEQUAL", 0, "Not Equal To", ""},
{0, NULL, 0, NULL, NULL}
};
File Metadata
Details
Mime Type
text/x-diff
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
04/d0/f9fd7dd075f03819ea034511d4c4
Event Timeline
Log In to Comment