From 4510f88d00a721a3d4ad3aa675050723eec2292c Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Fri, 15 Mar 2019 16:19:35 -0300 Subject: [PATCH] Remove object hide_* operators from outliner keymap We already have dedicated outliner visibility operators that not only take precedent over those ones, but also unhide collections as well. No change for the end user. That said, since I added the outliner hide/unhide operators I assumed that newly visible objects are to be selected. That can change in a separate commit, but it should be done by changing OUTLINER_OT_unhide_all. Reviewers: brecht Differential Revision: https://developer.blender.org/D4527 --- .../presets/keyconfig/keymap_data/blender_default.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/release/scripts/presets/keyconfig/keymap_data/blender_default.py b/release/scripts/presets/keyconfig/keymap_data/blender_default.py index 596c1d2afb0..f9455639b86 100644 --- a/release/scripts/presets/keyconfig/keymap_data/blender_default.py +++ b/release/scripts/presets/keyconfig/keymap_data/blender_default.py @@ -698,12 +698,6 @@ def km_outliner(params): ("outliner.collection_exclude_clear", {"type": 'E', "value": 'PRESS', "alt": True}, None), ("outliner.hide", {"type": 'H', "value": 'PRESS'}, None), ("outliner.unhide_all", {"type": 'H', "value": 'PRESS', "alt": True}, None), - ("object.hide_view_clear", {"type": 'H', "value": 'PRESS', "alt": True}, - {"properties": [("select", False)]}), - ("object.hide_view_set", {"type": 'H', "value": 'PRESS'}, - {"properties": [("unselected", False)]}), - ("object.hide_view_set", {"type": 'H', "value": 'PRESS', "shift": True}, - {"properties": [("unselected", True)]}), ]) return keymap