Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <mail@jlucke.com>2018-11-06 17:37:36 +0300
committerJacques Lucke <mail@jlucke.com>2018-11-06 17:37:36 +0300
commit7461a6811331bee00e4e6f3c642e05ebcae75add (patch)
tree3a3fcbc0241587aa5cfc669791b498d5d782bef2 /space_view3d_pie_menus
parent30e26a00827fc67fab468591f4f2fb3c47615ff1 (diff)
View 3D Pie Menus: Correct order in Manipulator Pie Menu
Diffstat (limited to 'space_view3d_pie_menus')
-rw-r--r--space_view3d_pie_menus/pie_manipulator_menu.py4
1 files changed, 2 insertions, 2 deletions
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')