[Bf-blender-cvs] [56fc0f411fb] master: Fix T72473: Particle hair: X mirror UI doesnt show 'topology mirror' option (even though it is being used for the ADD brush)

Philipp Oeser noreply at git.blender.org
Thu Dec 19 14:25:08 CET 2019


Commit: 56fc0f411fb5c8b71d916d834c5435e667d14d1a
Author: Philipp Oeser
Date:   Mon Dec 16 12:25:42 2019 +0100
Branches: master
https://developer.blender.org/rB56fc0f411fb5c8b71d916d834c5435e667d14d1a

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

===================================================================

M	release/scripts/startup/bl_ui/space_view3d_toolbar.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 07ebacfb77f..f0c4aaa9344 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -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")



More information about the Bf-blender-cvs mailing list