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>2019-03-26 14:47:25 +0300
committerJacques Lucke <mail@jlucke.com>2019-03-26 14:47:25 +0300
commit0f2207e7fe467cdce1a0b4cc1a1ab0ccda0dfcef (patch)
tree8ed479cd30fda73d7ea934544bd4607b36eec7f7 /space_view3d_pie_menus/pie_animation_menu.py
parent123c42df69d8d624b5382e1e3dea263beb800237 (diff)
Fix '3D Viewport Pie Menus' idnames after recent change
This is necessary because of rBb24a255ca67.
Diffstat (limited to 'space_view3d_pie_menus/pie_animation_menu.py')
-rw-r--r--space_view3d_pie_menus/pie_animation_menu.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/space_view3d_pie_menus/pie_animation_menu.py b/space_view3d_pie_menus/pie_animation_menu.py
index 774aa8e0..66dab8bb 100644
--- a/space_view3d_pie_menus/pie_animation_menu.py
+++ b/space_view3d_pie_menus/pie_animation_menu.py
@@ -40,7 +40,7 @@ from bpy.types import (
class PieAnimation(Menu):
- bl_idname = "pie.animation"
+ bl_idname = "PIE_MT_animation"
bl_label = "Pie Animation"
def draw(self, context):
@@ -103,7 +103,7 @@ def register():
# Animation
km = wm.keyconfigs.addon.keymaps.new(name='Object Non-modal')
kmi = km.keymap_items.new('wm.call_menu_pie', 'A', 'PRESS', alt=True)
- kmi.properties.name = "pie.animation"
+ kmi.properties.name = "PIE_MT_animation"
addon_keymaps.append((km, kmi))