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:
authorWilliam Reynish <billrey@me.com>2019-05-05 18:42:18 +0300
committerWilliam Reynish <billrey@me.com>2019-05-05 18:42:18 +0300
commit2c92900a47784c9d3b121e3763444a62d4752deb (patch)
treedd350a6e509c2c7b0e619834eca6d50192cbdf66 /release
parent1c58604070682a1fe01d6fd49820c1578f18580a (diff)
Industry Compat Keymap: Fix Select All operators in the Info Editor
Patch by Valentin (Poulpator) Differential Revision: https://developer.blender.org/D4746
Diffstat (limited to 'release')
-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),