Industry Compat Keymap: Fix Select All operators in the Info Editor

Patch by Valentin (Poulpator)

Differential Revision: https://developer.blender.org/D4746
This commit is contained in:
William Reynish 2019-05-05 17:42:18 +02:00
parent 1c58604070
commit 2c92900a47
1 changed files with 6 additions and 3 deletions

View File

@ -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),