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:
authorDalai Felinto <dfelinto@gmail.com>2019-03-22 17:58:44 +0300
committerDalai Felinto <dfelinto@gmail.com>2019-03-22 18:03:42 +0300
commita17df6d91e6806186c7416669c61950b763fe665 (patch)
tree5d6b37e1402830112ace8ba760ea504517202a51 /release/scripts
parentfcff2a57518ffaf509be7a3bdb57e7e9ff8f85b5 (diff)
Fix T62841: Hidden collection shortcut should be work in edit mode
This is a full revert of b6c61945aed51d86dc474df616761f9a25d71d09. But ammended to include the object.hide_collection() operator to the pose keymap as well. While trying to expose the shortcuts to pose mode, I ended up exposing them for all the modes. It is now only available for object and mode modes.
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/presets/keyconfig/keymap_data/blender_default.py23
1 files changed, 15 insertions, 8 deletions
diff --git a/release/scripts/presets/keyconfig/keymap_data/blender_default.py b/release/scripts/presets/keyconfig/keymap_data/blender_default.py
index ce94608cad6..7af1f519c60 100644
--- a/release/scripts/presets/keyconfig/keymap_data/blender_default.py
+++ b/release/scripts/presets/keyconfig/keymap_data/blender_default.py
@@ -1066,14 +1066,6 @@ def km_view3d(params):
op_panel("VIEW3D_PT_snapping", {"type": 'TAB', "value": 'PRESS', "shift": True, "ctrl": True}, [("keep_open", False)]),
("object.transform_axis_target", {"type": 'T', "value": 'PRESS', "shift": True}, None),
("transform.skin_resize", {"type": 'A', "value": 'PRESS', "ctrl": True}, None),
- ("object.hide_collection", {"type": 'H', "value": 'PRESS', "ctrl": True}, None),
- *(
- (("object.hide_collection",
- {"type": NUMBERS_1[i], "value": 'PRESS', "any": True},
- {"properties": [("collection_index", i + 1)]})
- for i in range(10)
- )
- ),
])
if params.apple:
@@ -3326,6 +3318,13 @@ def km_pose(params):
("pose.breakdown", {"type": 'E', "value": 'PRESS', "shift": True}, None),
op_menu("VIEW3D_MT_pose_context_menu", params.context_menu_event),
op_menu("VIEW3D_MT_pose_propagate", {"type": 'P', "value": 'PRESS', "alt": True}),
+ *(
+ (("object.hide_collection",
+ {"type": NUMBERS_1[i], "value": 'PRESS', "any": True},
+ {"properties": [("collection_index", i + 1)]})
+ for i in range(10)
+ )
+ ),
])
if params.apple:
@@ -3404,6 +3403,14 @@ def km_object_mode(params):
{"properties": [("unselected", False)]}),
("object.hide_view_set", {"type": 'H', "value": 'PRESS', "shift": True},
{"properties": [("unselected", True)]}),
+ ("object.hide_collection", {"type": 'H', "value": 'PRESS', "ctrl": True}, None),
+ *(
+ (("object.hide_collection",
+ {"type": NUMBERS_1[i], "value": 'PRESS', "any": True},
+ {"properties": [("collection_index", i + 1)]})
+ for i in range(10)
+ )
+ ),
])
if params.legacy: