From 5d8030b8f3cfff1b83d7e2d98359a8dc51f78711 Mon Sep 17 00:00:00 2001 From: William Reynish Date: Tue, 16 Apr 2019 22:13:25 +0200 Subject: Industry Compat keymap: Fix loop selection - Extending loops wasn't working correctly. This is now fixed. - Also added ability to deselect loops by holding Ctrl and double-clicking --- .../scripts/presets/keyconfig/keymap_data/industry_compatible_data.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'release') diff --git a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py index be13b538507..4eb13b263c6 100644 --- a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py +++ b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py @@ -3004,7 +3004,9 @@ def km_mesh(params): ("mesh.loop_select", {"type": 'LEFTMOUSE', "value": 'DOUBLE_CLICK'}, {"properties": [("extend", False), ("deselect", False), ("toggle", False)]}), ("mesh.loop_select", {"type": 'LEFTMOUSE', "value": 'DOUBLE_CLICK', "shift": True}, - {"properties": [("extend", False), ("deselect", False), ("toggle", True)]}), + {"properties": [("extend", True), ("deselect", False), ("toggle", False)]}), + ("mesh.loop_select", {"type": 'LEFTMOUSE', "value": 'DOUBLE_CLICK', "ctrl": True}, + {"properties": [("extend", False), ("deselect", True), ("toggle", False)]}), # Selection ("mesh.select_all", {"type": 'A', "value": 'PRESS', "ctrl": True}, {"properties": [("action", 'SELECT')]}), ("mesh.select_all", {"type": 'A', "value": 'PRESS', "ctrl": True, "shift": True}, {"properties": [("action", 'DESELECT')]}), -- cgit v1.2.3