Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-04-29 21:59:44 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-29 21:59:44 +0400
commit4ca0df348efc93994f0ebb0827f8b6e38792c469 (patch)
tree7697ded8e9e4cbe09a50e2327e825848650413d2 /release
parentf135246c01e7e59c6718c781bbecbdb6eec5bc8b (diff)
move modal view3d keymaps out of main list of keymaps into the view3d section.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/modules/bpy_extras/keyconfig_utils.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/release/scripts/modules/bpy_extras/keyconfig_utils.py b/release/scripts/modules/bpy_extras/keyconfig_utils.py
index 29a65965c3f..1baab5654c6 100644
--- a/release/scripts/modules/bpy_extras/keyconfig_utils.py
+++ b/release/scripts/modules/bpy_extras/keyconfig_utils.py
@@ -60,6 +60,12 @@ KM_HIERARCHY = [
('Object Non-modal', 'EMPTY', 'WINDOW', []), # mode change
+ ('View3D Fly Modal', 'EMPTY', 'WINDOW', []),
+ ('View3D Rotate Modal', 'EMPTY', 'WINDOW', []),
+ ('View3D Move Modal', 'EMPTY', 'WINDOW', []),
+ ('View3D Zoom Modal', 'EMPTY', 'WINDOW', []),
+ ('View3D Dolly Modal', 'EMPTY', 'WINDOW', []),
+
('3D View Generic', 'VIEW_3D', 'WINDOW', []), # toolbar and properties
]),
@@ -122,11 +128,6 @@ KM_HIERARCHY = [
('Standard Modal Map', 'EMPTY', 'WINDOW', []),
('Transform Modal Map', 'EMPTY', 'WINDOW', []),
- ('View3D Fly Modal', 'EMPTY', 'WINDOW', []),
- ('View3D Rotate Modal', 'EMPTY', 'WINDOW', []),
- ('View3D Move Modal', 'EMPTY', 'WINDOW', []),
- ('View3D Zoom Modal', 'EMPTY', 'WINDOW', []),
- ('View3D Dolly Modal', 'EMPTY', 'WINDOW', []),
]