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:
Diffstat (limited to 'space_view3d_pie_menus/pie_orientation_menu.py')
-rw-r--r--space_view3d_pie_menus/pie_orientation_menu.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/space_view3d_pie_menus/pie_orientation_menu.py b/space_view3d_pie_menus/pie_orientation_menu.py
index 801fbaa0..afcbee42 100644
--- a/space_view3d_pie_menus/pie_orientation_menu.py
+++ b/space_view3d_pie_menus/pie_orientation_menu.py
@@ -41,7 +41,7 @@ from bpy.props import (
class OrientPie(Menu):
bl_label = "Transform Orientation"
- bl_idname = "pie.orient"
+ bl_idname = "PIE_MT_orient"
def draw(self, context):
layout = self.layout
@@ -67,7 +67,7 @@ def register():
# Manipulators
km = wm.keyconfigs.addon.keymaps.new(name='3D View Generic', space_type='VIEW_3D')
kmi = km.keymap_items.new('wm.call_menu_pie', 'SPACE', 'PRESS', alt=True)
- kmi.properties.name = "pie.orient"
+ kmi.properties.name = "PIE_MT_orient"
addon_keymaps.append((km, kmi))