[Bf-blender-cvs] [2a670a34be0] blender-v2.92-release: Fix T83047: Texture paint symmetry options not in topbar

Pablo Dobarro noreply at git.blender.org
Wed Feb 10 01:11:32 CET 2021


Commit: 2a670a34be01e5d8da54fedfbf85f4c89e259adc
Author: Pablo Dobarro
Date:   Tue Jan 26 19:41:17 2021 +0100
Branches: blender-v2.92-release
https://developer.blender.org/rB2a670a34be01e5d8da54fedfbf85f4c89e259adc

Fix T83047: Texture paint symmetry options not in topbar

The texture paint mode was accidentally removed from the list

Reviewed By: JacquesLucke

Maniphest Tasks: T83047

Differential Revision: https://developer.blender.org/D10216

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

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

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

diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 3ed50a8c0a3..b9a57674a6e 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -158,7 +158,7 @@ class VIEW3D_HT_tool_header(Header):
         elif mode_string == 'POSE':
             _row, sub = row_for_mirror()
             sub.prop(context.object.pose, "use_mirror_x", text="X", toggle=True)
-        elif mode_string in {'EDIT_MESH', 'PAINT_WEIGHT', 'SCULPT', 'PAINT_VERTEX'}:
+        elif mode_string in {'EDIT_MESH', 'PAINT_WEIGHT', 'SCULPT', 'PAINT_VERTEX', 'PAINT_TEXTURE'}:
             # Mesh Modes, Use Mesh Symmetry
             row, sub = row_for_mirror()
             sub.prop(context.object.data, "use_mirror_x", text="X", toggle=True)



More information about the Bf-blender-cvs mailing list