We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4573b6b + b54a879 commit a062d52Copy full SHA for a062d52
1 file changed
src/funtracks/data_model/tracks.py
@@ -53,6 +53,7 @@ class Tracks:
53
"""
54
55
refresh = Signal(object)
56
+ action_applied = Signal(object)
57
58
def __init__(
59
self,
@@ -782,6 +783,7 @@ def notify_annotators(self, action: BasicAction) -> None:
782
783
Args:
784
action: The action that triggered this notification
785
786
+ self.action_applied.emit(action)
787
self.annotators.update(action)
788
789
def get_available_features(self) -> dict[str, Feature]:
0 commit comments