[Bf-blender-cvs] [1f5cd85] master: Fix T49375: align rotation with snap target isn't toggleable in edit mode.

Bastien Montagne noreply at git.blender.org
Mon Sep 19 15:51:15 CEST 2016


Commit: 1f5cd85976df79a5db1fceaf67226621d66e2a94
Author: Bastien Montagne
Date:   Mon Sep 19 15:49:43 2016 +0200
Branches: master
https://developer.blender.org/rB1f5cd85976df79a5db1fceaf67226621d66e2a94

Fix T49375: align rotation with snap target isn't toggleable in edit mode.

Based on D2237, but fixed patch always hiding 'snap on self' button...

Should be safe for 2.78.

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

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 1748d1d..fad5214 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -106,10 +106,10 @@ class VIEW3D_HT_header(Header):
             else:
                 row.prop(toolsettings, "snap_target", text="")
                 if obj:
-                    if mode in {'OBJECT', 'POSE'} and snap_element != 'VOLUME':
-                        row.prop(toolsettings, "use_snap_align_rotation", text="")
-                    elif mode == 'EDIT':
+                    if mode == 'EDIT':
                         row.prop(toolsettings, "use_snap_self", text="")
+                    if mode in {'OBJECT', 'POSE', 'EDIT'} and snap_element != 'VOLUME':
+                        row.prop(toolsettings, "use_snap_align_rotation", text="")
 
             if snap_element == 'VOLUME':
                 row.prop(toolsettings, "use_snap_peel_object", text="")




More information about the Bf-blender-cvs mailing list