Skip to content

Commit 4d6b05d

Browse files
authored
Properties: Fix transition property lookup (#3789)
1 parent b929662 commit 4d6b05d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/windows/models/properties_model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def update_item_timeout(self):
102102
self.selected.append((c, item_type))
103103

104104
if item_type == "transition":
105-
t = get_app().window.timeline_sync.timeline.GetTimelineEffect(item_id)
105+
t = get_app().window.timeline_sync.timeline.GetEffect(item_id)
106106
if t:
107107
# Append to selected items
108108
self.selected.append((t, item_type))

0 commit comments

Comments
 (0)