[Bf-blender-cvs] [d8746bf45e6] master: UI: Move Transform tool to be after Move, Rotate, Scale in the toolbar

William Reynish noreply at git.blender.org
Thu May 23 18:12:18 CEST 2019


Commit: d8746bf45e691c7b54ab4cf27c73c95935d3c1f3
Author: William Reynish
Date:   Thu May 23 18:12:14 2019 +0200
Branches: master
https://developer.blender.org/rBd8746bf45e691c7b54ab4cf27c73c95935d3c1f3

UI: Move Transform tool to be after Move, Rotate, Scale in the toolbar

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

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

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

diff --git a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
index db29a284a49..7200a5edd8a 100644
--- a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
@@ -1709,13 +1709,13 @@ class VIEW3D_PT_tools_active(ToolSelectPanelHelper, Panel):
 
     # for reuse
     _tools_transform = (
-        _defs_transform.transform,
         _defs_transform.translate,
         _defs_transform.rotate,
         (
             _defs_transform.scale,
             _defs_transform.scale_cage,
         ),
+        _defs_transform.transform,
     )
 
     _tools_select = (



More information about the Bf-blender-cvs mailing list