Page MenuHome

Multi-Object-Edit : MESH_OT_select_similar_region
Needs ReviewPublic

Authored by Philippe Bachour (philippe-bachour) on May 9 2018, 2:53 PM.

Details

Summary

Support for select similar region in multi object edit.

Diff Detail

Repository
rB Blender

Event Timeline

Dalai Felinto (dfelinto) requested changes to this revision.May 14 2018, 3:19 PM

Thanks for your contribution. Your patch needs a few changes to proceed though.
Please see in-line comments for details.

source/blender/editors/mesh/editmesh_select.c
1343

Move { to the previous line, with a space after the ( with a space between them.

1348

Skip the for loop when no selected relevant element (face in this case I suppose?).

1357

Report errors only once and only if all the objects have the same error.

1409

Report errors only once and only if all the objects have the same error.

This revision now requires changes to proceed.May 14 2018, 3:19 PM

I've updated the diff according to your comments

  • Indentation fixed
  • Skip the for loop when no selected relevant element
  • Report errors only once and only if all the objects have the same error.

By the way, shouldn't it work across objects, the same way you want select_similar to work ? D3310