[Bf-extensions-cvs] [7461a681] blender2.8: View 3D Pie Menus: Correct order in Manipulator Pie Menu

Jacques Lucke noreply at git.blender.org
Tue Nov 6 15:38:11 CET 2018


Commit: 7461a6811331bee00e4e6f3c642e05ebcae75add
Author: Jacques Lucke
Date:   Tue Nov 6 15:37:36 2018 +0100
Branches: blender2.8
https://developer.blender.org/rBA7461a6811331bee00e4e6f3c642e05ebcae75add

View 3D Pie Menus: Correct order in Manipulator Pie Menu

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

M	space_view3d_pie_menus/pie_manipulator_menu.py

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

diff --git a/space_view3d_pie_menus/pie_manipulator_menu.py b/space_view3d_pie_menus/pie_manipulator_menu.py
index f3c163a7..68895901 100644
--- a/space_view3d_pie_menus/pie_manipulator_menu.py
+++ b/space_view3d_pie_menus/pie_manipulator_menu.py
@@ -59,9 +59,9 @@ class PieManipulator(Menu):
         # 4 - LEFT
         pie.operator("wm.tool_set_by_name", text="Translate", icon='NONE').name = "Move"
         # 6 - RIGHT
-        pie.operator("wm.tool_set_by_name", text="Scale", icon='NONE').name = "Scale"
-        # 2 - BOTTOM
         pie.operator("wm.tool_set_by_name", text="Rotate", icon='NONE').name = "Rotate"
+        # 2 - BOTTOM
+        pie.operator("wm.tool_set_by_name", text="Scale", icon='NONE').name = "Scale"
         # 8 - TOP
         pie.operator("w.manupulators", text="Show/Hide Toggle", icon='NONE')



More information about the Bf-extensions-cvs mailing list