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:
authormeta-androcto <meta.androcto1@gmail.com>2019-04-30 12:02:59 +0300
committermeta-androcto <meta.androcto1@gmail.com>2019-04-30 12:02:59 +0300
commita06dead7662a2be7560c9fdd2ea71728f4efc020 (patch)
tree19e1eb39c10ff67c03dae6e38abd189979f5b84b /space_view3d_pie_menus
parentb0cb7fc2f8db97fc7a960f257577d054c7df88a8 (diff)
pie_animation_menu: remap key to Ctrl Shift Spacebar
Diffstat (limited to 'space_view3d_pie_menus')
-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 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))