IC keymap: Fix warnings after recent Cut -> Split name change

This commit is contained in:
William Reynish 2020-02-17 22:42:58 +01:00
parent b117b8e818
commit d38dfbd13d
1 changed files with 3 additions and 3 deletions

View File

@ -1727,9 +1727,9 @@ def km_sequencer(params):
("sequencer.select_all", {"type": 'A', "value": 'PRESS', "ctrl": True}, {"properties": [("action", 'SELECT')]}),
("sequencer.select_all", {"type": 'A', "value": 'PRESS', "ctrl": True, "shift": True}, {"properties": [("action", 'DESELECT')]}),
("sequencer.select_all", {"type": 'I', "value": 'PRESS', "ctrl": True}, {"properties": [("action", 'INVERT')]}),
("sequencer.cut", {"type": 'K', "value": 'PRESS'},
("sequencer.split", {"type": 'K', "value": 'PRESS'},
{"properties": [("type", 'SOFT')]}),
("sequencer.cut", {"type": 'K', "value": 'PRESS', "shift": True},
("sequencer.split", {"type": 'K', "value": 'PRESS', "shift": True},
{"properties": [("type", 'HARD')]}),
("sequencer.mute", {"type": 'M', "value": 'PRESS'},
{"properties": [("unselected", False)]}),
@ -1779,7 +1779,7 @@ def km_sequencer(params):
("sequencer.snap", {"type": 'X', "value": 'PRESS'}, None),
("sequencer.swap_inputs", {"type": 'S', "value": 'PRESS', "alt": True}, None),
*(
(("sequencer.cut_multicam",
(("sequencer.split_multicam",
{"type": NUMBERS_1[i], "value": 'PRESS'},
{"properties": [("camera", i + 1)]})
for i in range(10)