Skip to content

Commit 6ff1dbe

Browse files
committed
Fix for editing a title and trying to update a thumbnail on the timeline - was missing a required arg
1 parent ebe2ad3 commit 6ff1dbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/windows/main_window.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ def actionEditTitle_trigger(self):
396396
c.save()
397397

398398
# Emit thumbnail update signal (to update timeline thumb image)
399-
self.ThumbnailUpdated.emit(c.id)
399+
self.ThumbnailUpdated.emit(c.id, 1)
400400

401401
# Update preview
402402
self.refreshFrameSignal.emit()

0 commit comments

Comments
 (0)