[Bf-blender-cvs] [4b786c0a0cf] soc-2019-outliner: Keymap: Remove recursive select from outliner

Nathan Craddock noreply at git.blender.org
Fri Jul 26 04:40:06 CEST 2019


Commit: 4b786c0a0cf9e135311cbb4ab68a6ce4a6a6a606
Author: Nathan Craddock
Date:   Thu Jul 25 15:49:46 2019 -0600
Branches: soc-2019-outliner
https://developer.blender.org/rB4b786c0a0cf9e135311cbb4ab68a6ce4a6a6a606

Keymap: Remove recursive select from outliner

Removes alt and alt+ctrl from outliner for recursive select
as there is a context menu option for this, and alt+click can be
taken globally by the emulate 3 button mouse option.

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

M	release/scripts/presets/keyconfig/keymap_data/blender_default.py

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

diff --git a/release/scripts/presets/keyconfig/keymap_data/blender_default.py b/release/scripts/presets/keyconfig/keymap_data/blender_default.py
index 3aa22c16648..07fbe8ebff8 100644
--- a/release/scripts/presets/keyconfig/keymap_data/blender_default.py
+++ b/release/scripts/presets/keyconfig/keymap_data/blender_default.py
@@ -708,10 +708,6 @@ def km_outliner(params):
         ("outliner.item_activate", {"type": 'LEFTMOUSE', "value": 'CLICK', "shift": True},
          {"properties": [("extend", False), ("range", True), ("recursive", False),
          ("deselect_all", not params.legacy)]}),
-        ("outliner.item_activate", {"type": 'LEFTMOUSE', "value": 'CLICK', "alt": True},
-         {"properties": [("extend", False), ("recursive", True)]}),
-        ("outliner.item_activate", {"type": 'LEFTMOUSE', "value": 'CLICK', "ctrl": True, "alt": True},
-         {"properties": [("extend", True), ("recursive", True)]}),
         ("outliner.select_box", {"type": 'B', "value": 'PRESS'}, None),
         ("outliner.select_box", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, {"properties": [("tweak", True)]}),
         ("outliner.select_box", {"type": 'EVT_TWEAK_L', "value": 'ANY', "shift": True},



More information about the Bf-blender-cvs mailing list