[Bf-extensions-cvs] [f6e3238d] master: Pie Menu manipulators - use tools

Campbell Barton noreply at git.blender.org
Mon May 28 16:29:38 CEST 2018


Commit: f6e3238de3e4d3526c64023b488a3d0ac177ae88
Author: Campbell Barton
Date:   Mon May 28 16:29:16 2018 +0200
Branches: master
https://developer.blender.org/rBAf6e3238de3e4d3526c64023b488a3d0ac177ae88

Pie Menu manipulators - use tools

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

M	pie_menus_official/pie_manipulator_of.py

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

diff --git a/pie_menus_official/pie_manipulator_of.py b/pie_menus_official/pie_manipulator_of.py
index 04ced83a..ef25d369 100644
--- a/pie_menus_official/pie_manipulator_of.py
+++ b/pie_menus_official/pie_manipulator_of.py
@@ -50,9 +50,9 @@ class VIEW3D_PIE_manipulator_of(Menu):
         layout = self.layout
 
         pie = layout.menu_pie()
-        pie.operator("view3d.manipulator_set", icon='MAN_TRANS', text="Translate").type = 'TRANSLATE'
-        pie.operator("view3d.manipulator_set", icon='MAN_ROT', text="Rotate").type = 'ROTATE'
-        pie.operator("view3d.manipulator_set", icon='MAN_SCALE', text="Scale").type = 'SCALE'
+        pie.operator("wm.tool_set_by_name", icon='MAN_TRANS', text="Translate").name = "Move"
+        pie.operator("wm.tool_set_by_name", icon='MAN_ROT', text="Rotate").name = "Rotate"
+        pie.operator("wm.tool_set_by_name", icon='MAN_SCALE', text="Scale").name = "Scale"
         pie.prop(context.space_data, "show_manipulator")



More information about the Bf-extensions-cvs mailing list