From 017e0287842577ae71f1e4287b070046b042857b Mon Sep 17 00:00:00 2001 From: William Reynish Date: Sat, 14 Dec 2019 17:16:42 +0100 Subject: Industry Compat keymap: Fix issue in UV editor Box Select tool Shift-dragging with the Box Select tool would also select the nearest point. Using a Click instead of Press event for selection (just like the default keymap) fixes this. --- .../scripts/presets/keyconfig/keymap_data/industry_compatible_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'release/scripts') 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 9ae5dbe071d..024ba6b9cf9 100644 --- a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py +++ b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py @@ -541,7 +541,7 @@ def km_uv_editor(params): ("uv.select", {"type": 'LEFTMOUSE', "value": 'CLICK'}, {"properties": [("extend", False), ("deselect_all", True)]}), - ("uv.select", {"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True}, + ("uv.select", {"type": 'LEFTMOUSE', "value": 'CLICK', "shift": True}, {"properties": [("extend", True), ("deselect_all", False)]}), ("transform.translate", {"type": "EVT_TWEAK_L", "value": 'ANY'}, None), ("uv.select_loop", {"type": 'LEFTMOUSE', "value": 'DOUBLE_CLICK', "shift": True}, -- cgit v1.2.3