Keymap: make plane track corners draggable with lmb
Previously when clicking and dragging with LMB you would only move the entire plane track. In order to move the corners independently you would have to use your right mouse button. This would also prevent the context menu to show up. Now LMB click and drag on corners moves them. If you LMB click and drag one of the 4 edges of the plane track you would move the entire plane track. Differential Revision: https://developer.blender.org/D5519
This commit is contained in:
committed by
Brecht Van Lommel
parent
cca1649b20
commit
32d778a773
@@ -2663,7 +2663,7 @@ def km_clip_editor(params):
|
||||
("clip.hide_tracks", {"type": 'H', "value": 'PRESS', "shift": True},
|
||||
{"properties": [("unselected", True)]}),
|
||||
("clip.hide_tracks_clear", {"type": 'H', "value": 'PRESS', "alt": True}, None),
|
||||
("clip.slide_plane_marker", {"type": params.action_mouse, "value": 'PRESS'}, None),
|
||||
("clip.slide_plane_marker", {"type": 'LEFTMOUSE', "value": 'CLICK_DRAG'}, None),
|
||||
("clip.keyframe_insert", {"type": 'I', "value": 'PRESS'}, None),
|
||||
("clip.keyframe_delete", {"type": 'I', "value": 'PRESS', "alt": True}, None),
|
||||
("clip.join_tracks", {"type": 'J', "value": 'PRESS', "ctrl": True}, None),
|
||||
|
||||
Reference in New Issue
Block a user