Skip to content

Commit e060bf3

Browse files
committed
main_window: SPEL WURDZ RITE
1 parent 8e7d733 commit e060bf3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/windows/main_window.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1529,23 +1529,23 @@ def keyPressEvent(self, event):
15291529
if intersecting_clips or intersecting_trans:
15301530
# Get list of clip ids
15311531
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]
15331533
self.timeline.Slice_Triggered(0, clip_ids, trans_ids, playhead_position)
15341534
elif key.matches(self.getShortcutByName("sliceSelectedKeepLeftSide")) == QKeySequence.ExactMatch:
15351535
intersecting_clips = Clip.filter(intersect=playhead_position)
15361536
intersecting_trans = Transition.filter(intersect=playhead_position)
15371537
if intersecting_clips or intersecting_trans:
15381538
# Get list of clip ids
15391539
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]
15411541
self.timeline.Slice_Triggered(1, clip_ids, trans_ids, playhead_position)
15421542
elif key.matches(self.getShortcutByName("sliceSelectedKeepRightSide")) == QKeySequence.ExactMatch:
15431543
intersecting_clips = Clip.filter(intersect=playhead_position)
15441544
intersecting_trans = Transition.filter(intersect=playhead_position)
15451545
if intersecting_clips or intersecting_trans:
15461546
# Get list of ids that are also selected
15471547
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]
15491549
self.timeline.Slice_Triggered(2, clip_ids, trans_ids, playhead_position)
15501550

15511551
elif key.matches(self.getShortcutByName("copyAll")) == QKeySequence.ExactMatch:

0 commit comments

Comments
 (0)