[Bf-extensions-cvs] [a06dead7] master: pie_animation_menu: remap key to Ctrl Shift Spacebar

meta-androcto noreply at git.blender.org
Tue Apr 30 11:03:36 CEST 2019


Commit: a06dead7662a2be7560c9fdd2ea71728f4efc020
Author: meta-androcto
Date:   Tue Apr 30 19:02:59 2019 +1000
Branches: master
https://developer.blender.org/rBAa06dead7662a2be7560c9fdd2ea71728f4efc020

pie_animation_menu: remap key to Ctrl Shift Spacebar

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

M	space_view3d_pie_menus/pie_animation_menu.py

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

diff --git a/space_view3d_pie_menus/pie_animation_menu.py b/space_view3d_pie_menus/pie_animation_menu.py
index 66dab8bb..443605a8 100644
--- a/space_view3d_pie_menus/pie_animation_menu.py
+++ b/space_view3d_pie_menus/pie_animation_menu.py
@@ -19,7 +19,7 @@
 # <pep8 compliant>
 
 bl_info = {
-    "name": "Hotkey: 'Alt A'",
+    "name": "Hotkey: 'Ctrl Shift Spacebar'",
     "description": "Pie menu for Timeline controls",
     "author": "pitiwazou, meta-androcto",
     "version": (0, 1, 1),
@@ -102,7 +102,7 @@ def register():
     if wm.keyconfigs.addon:
         # 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 = km.keymap_items.new('wm.call_menu_pie', 'SPACE', 'PRESS', ctrl=True, shift=True)
         kmi.properties.name = "PIE_MT_animation"
         addon_keymaps.append((km, kmi))



More information about the Bf-extensions-cvs mailing list