Industry Compat keymap: Support for dragging markers in marker region

Now that there is a dedicated scrubbing area, the markers area can be used again for manipulating markers on drag.
This commit is contained in:
William Reynish
2019-05-07 16:16:45 +02:00
parent 2eb217b155
commit 9c41ff4d46

View File

@@ -765,12 +765,9 @@ def km_markers(params):
items.extend([
("wm.search_menu", {"type": 'TAB', "value": 'PRESS'}, None),
("anim.change_frame", {"type": 'LEFTMOUSE', "value": 'PRESS'}, None),
("graph.cursor_set", {"type": 'LEFTMOUSE', "value": 'PRESS'}, None),
("marker.add", {"type": 'M', "value": 'PRESS'}, None),
("marker.move", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("marker.duplicate", {"type": 'D', "value": 'PRESS', "ctrl": True}, None),
("marker.select", {"type": 'LEFTMOUSE', "value": 'PRESS'}, None),
("marker.select", {"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True},
{"properties": [("extend", True)]}),