Multi-Object-Editing: select_non_manifold (MESH_OT_select_non_manifold) - COW
Details
Details
Diff Detail
Diff Detail
Event Timeline
Comment Actions
Please address the raised issue, and please check your IDE defaults so it doesn't replace all tabs with spaces:
| source/blender/editors/mesh/editmesh_select.c | ||
|---|---|---|
| 3909 | Remove this check outside the for loop. Have it as a const together with the other RNA_boolean_get() calls. | |
| 3917 | If it fails for one it will fail for all of them. In this case it is fine to break after reporting, and returning OPERATOR_CANCELLED. Just remember to free objects before exiting the function. | |
Comment Actions
Fixed:
- Change "continue" for OPERATOR_CANCELLED
- RNA_boolean_get(op->ptr, "extend") is a const bool.