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:
authorCampbell Barton <ideasman42@gmail.com>2019-03-18 03:59:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-18 04:40:52 +0300
commit7e12649226fa6eeda7026cc2e8ba9f5a09be1400 (patch)
tree6c5101db376846d37b399c8e23bc21e3f29ace28 /space_view3d_pie_menus
parentb1a011f77d896d2314a35710b4e0fa079839343a (diff)
Update for changes in Blender
Diffstat (limited to 'space_view3d_pie_menus')
-rw-r--r--space_view3d_pie_menus/pie_manipulator_menu.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/space_view3d_pie_menus/pie_manipulator_menu.py b/space_view3d_pie_menus/pie_manipulator_menu.py
index 68895901..3c65da58 100644
--- a/space_view3d_pie_menus/pie_manipulator_menu.py
+++ b/space_view3d_pie_menus/pie_manipulator_menu.py
@@ -57,11 +57,11 @@ class PieManipulator(Menu):
layout = self.layout
pie = layout.menu_pie()
# 4 - LEFT
- pie.operator("wm.tool_set_by_name", text="Translate", icon='NONE').name = "Move"
+ pie.operator("wm.tool_set_by_id", text="Translate", icon='NONE').name = "builtin.move"
# 6 - RIGHT
- pie.operator("wm.tool_set_by_name", text="Rotate", icon='NONE').name = "Rotate"
+ pie.operator("wm.tool_set_by_id", text="Rotate", icon='NONE').name = "builtin.rotate"
# 2 - BOTTOM
- pie.operator("wm.tool_set_by_name", text="Scale", icon='NONE').name = "Scale"
+ pie.operator("wm.tool_set_by_id", text="Scale", icon='NONE').name = "builtin.scale"
# 8 - TOP
pie.operator("w.manupulators", text="Show/Hide Toggle", icon='NONE')