Skip to content

Commit

Permalink
Fix for editing a title and trying to update a thumbnail on the timel…
Browse files Browse the repository at this point in the history
…ine - was missing a required arg
  • Loading branch information
jonoomph committed Apr 13, 2023
1 parent ebe2ad3 commit 6ff1dbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/windows/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ def actionEditTitle_trigger(self):
c.save()

# Emit thumbnail update signal (to update timeline thumb image)
self.ThumbnailUpdated.emit(c.id)
self.ThumbnailUpdated.emit(c.id, 1)

# Update preview
self.refreshFrameSignal.emit()
Expand Down

0 comments on commit 6ff1dbe

Please sign in to comment.