From 2c92900a47784c9d3b121e3763444a62d4752deb Mon Sep 17 00:00:00 2001 From: William Reynish Date: Sun, 5 May 2019 17:42:18 +0200 Subject: Industry Compat Keymap: Fix Select All operators in the Info Editor Patch by Valentin (Poulpator) Differential Revision: https://developer.blender.org/D4746 --- .../presets/keyconfig/keymap_data/industry_compatible_data.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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 b4a466c0257..c0d262e863e 100644 --- a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py +++ b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py @@ -1124,9 +1124,12 @@ def km_info(params): {"properties": [("extend", True)]}), ("info.select_box", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, {"properties": [("wait_for_input", False)]}), - ("info.select_all", {"type": 'A', "value": 'PRESS', "ctrl": True}, {"properties": [("action", 'SELECT')]}), - ("info.select_all", {"type": 'A', "value": 'PRESS', "ctrl": True, "shift": True}, None), - ("info.select_all", {"type": 'I', "value": 'PRESS', "ctrl": True}, None), + ("info.select_all", {"type": 'A', "value": 'PRESS', "ctrl": True}, + {"properties": [("action", 'SELECT')]}), + ("info.select_all", {"type": 'A', "value": 'PRESS', "ctrl": True, "shift": True}, + {"properties": [("action", 'DESELECT')]}), + ("info.select_all", {"type": 'I', "value": 'PRESS', "ctrl": True}, + {"properties": [("action", 'INVERT')]}), ("info.select_box", {"type": 'Q', "value": 'PRESS'}, None), ("info.report_replay", {"type": 'R', "value": 'PRESS'}, None), ("info.report_delete", {"type": 'BACK_SPACE', "value": 'PRESS'}, None), -- cgit v1.2.3