From f6e3238de3e4d3526c64023b488a3d0ac177ae88 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 28 May 2018 16:29:16 +0200 Subject: [PATCH] Pie Menu manipulators - use tools --- pie_menus_official/pie_manipulator_of.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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") -- 2.11.4.GIT