Skip to content

Commit

Permalink
fix: "Clear changes" deletes non Patchwork markers
Browse files Browse the repository at this point in the history
  • Loading branch information
in03 committed Dec 1, 2022
1 parent ab7c610 commit d388d3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/patchwork/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ def clear_markers():
if not markers:
return False

[x.delete() for x in markers]
[x.delete() for x in markers if x.customdata == "patchwork_marker"]
force_refresh = True
markers = copy.copy(resolve.active_timeline.markers)
return True
Expand Down

0 comments on commit d388d3c

Please sign in to comment.