Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorJacques Lucke <mail@jlucke.com>2019-05-24 15:54:54 +0300
committerJacques Lucke <mail@jlucke.com>2019-05-24 15:54:58 +0300
commit1b60b6edf176ae0dc6a0506d2edffdb1788585f3 (patch)
tree0f4091d3abe3f22d29d3469b21f767aa59204d96 /source
parent05a9788b254d4e168f7a46d406aadf34b449d465 (diff)
Fix T65071: Crash when selecting joined tracks
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/space_clip/tracking_ops.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_clip/tracking_ops.c b/source/blender/editors/space_clip/tracking_ops.c
index 663270ef550..0425d6da3d8 100644
--- a/source/blender/editors/space_clip/tracking_ops.c
+++ b/source/blender/editors/space_clip/tracking_ops.c
@@ -1466,6 +1466,7 @@ static int join_tracks_exec(bContext *C, wmOperator *op)
}
BLI_gset_free(point_tracks, NULL);
+ DEG_id_tag_update(&clip->id, 0);
WM_event_add_notifier(C, NC_MOVIECLIP | NA_EDITED, clip);