Fix T72473: Particle hair: X mirror UI doesnt show 'topology mirror'

option (even though it is being used for the ADD brush)

Add the option to the UI in that single case.

Maniphest Tasks: T72473

Differential Revision: https://developer.blender.org/D6418
This commit is contained in:
Philipp Oeser 2019-12-16 12:25:42 +01:00
parent e0afee86b3
commit 56fc0f411f
Notes: blender-bot 2023-02-14 03:52:45 +01:00
Referenced by issue #72473, Particle hair: X mirror UI doesnt show 'topology mirror' option (even though it is being used for ADD and CUT brushes)
1 changed files with 2 additions and 0 deletions

View File

@ -1283,6 +1283,8 @@ class VIEW3D_PT_tools_particlemode_options(View3DPanel, Panel):
col = layout.column(align=True)
col.active = pe.is_editable
col.prop(ob.data, "use_mirror_x")
if pe.tool == 'ADD':
col.prop(ob.data, "use_mirror_topology")
col.separator()
col.prop(pe, "use_preserve_length", text="Preserve Strand Lengths")
col.prop(pe, "use_preserve_root", text="Preserve Root Positions")