@@ -1529,23 +1529,23 @@ def keyPressEvent(self, event):
1529
1529
if intersecting_clips or intersecting_trans :
1530
1530
# Get list of clip ids
1531
1531
clip_ids = [c .id for c in intersecting_clips if c .id in self .selected_clips ]
1532
- trans_ids = [t .id for t in intersecting_trans if t .id in self .selected_transitons ]
1532
+ trans_ids = [t .id for t in intersecting_trans if t .id in self .selected_transitions ]
1533
1533
self .timeline .Slice_Triggered (0 , clip_ids , trans_ids , playhead_position )
1534
1534
elif key .matches (self .getShortcutByName ("sliceSelectedKeepLeftSide" )) == QKeySequence .ExactMatch :
1535
1535
intersecting_clips = Clip .filter (intersect = playhead_position )
1536
1536
intersecting_trans = Transition .filter (intersect = playhead_position )
1537
1537
if intersecting_clips or intersecting_trans :
1538
1538
# Get list of clip ids
1539
1539
clip_ids = [c .id for c in intersecting_clips if c .id in self .selected_clips ]
1540
- trans_ids = [t .id for t in intersecting_trans if t .id in self .selected_transitons ]
1540
+ trans_ids = [t .id for t in intersecting_trans if t .id in self .selected_transitions ]
1541
1541
self .timeline .Slice_Triggered (1 , clip_ids , trans_ids , playhead_position )
1542
1542
elif key .matches (self .getShortcutByName ("sliceSelectedKeepRightSide" )) == QKeySequence .ExactMatch :
1543
1543
intersecting_clips = Clip .filter (intersect = playhead_position )
1544
1544
intersecting_trans = Transition .filter (intersect = playhead_position )
1545
1545
if intersecting_clips or intersecting_trans :
1546
1546
# Get list of ids that are also selected
1547
1547
clip_ids = [c .id for c in intersecting_clips if c .id in self .selected_clips ]
1548
- trans_ids = [t .id for t in intersecting_trans if t .id in self .selected_transitons ]
1548
+ trans_ids = [t .id for t in intersecting_trans if t .id in self .selected_transitions ]
1549
1549
self .timeline .Slice_Triggered (2 , clip_ids , trans_ids , playhead_position )
1550
1550
1551
1551
elif key .matches (self .getShortcutByName ("copyAll" )) == QKeySequence .ExactMatch :
0 commit comments