From 07e66f58cc711361ed76f4fa645c7a0079134de0 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 28 Jan 2021 22:06:05 +1100 Subject: [PATCH] Fix T85121: Sequencer key conflict with Lock & Select Linked "Lock Strips" (Shift-L), conflicted with "Select Pick Linked". Use Ctrl-H, Ctrl-Alt-H for lock & unlock since selected linked uses bindings which are used in other parts of Blender. --- .../scripts/presets/keyconfig/keymap_data/blender_default.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release/scripts/presets/keyconfig/keymap_data/blender_default.py b/release/scripts/presets/keyconfig/keymap_data/blender_default.py index 287322e9a29..73f05fb3d80 100644 --- a/release/scripts/presets/keyconfig/keymap_data/blender_default.py +++ b/release/scripts/presets/keyconfig/keymap_data/blender_default.py @@ -2556,8 +2556,8 @@ def km_sequencer(params): {"properties": [("unselected", False)]}), ("sequencer.unmute", {"type": 'H', "value": 'PRESS', "shift": True, "alt": True}, {"properties": [("unselected", True)]}), - ("sequencer.lock", {"type": 'L', "value": 'PRESS', "shift": True}, None), - ("sequencer.unlock", {"type": 'L', "value": 'PRESS', "shift": True, "alt": True}, None), + ("sequencer.lock", {"type": 'H', "value": 'PRESS', "ctrl": True}, None), + ("sequencer.unlock", {"type": 'H', "value": 'PRESS', "ctrl": True, "alt": True}, None), ("sequencer.reassign_inputs", {"type": 'R', "value": 'PRESS'}, None), ("sequencer.reload", {"type": 'R', "value": 'PRESS', "alt": True}, None), ("sequencer.reload", {"type": 'R', "value": 'PRESS', "shift": True, "alt": True},