Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py9
1 files 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),