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
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/editors/space_clip/tracking_ops.c')
-rw-r--r--source/blender/editors/space_clip/tracking_ops.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/editors/space_clip/tracking_ops.c b/source/blender/editors/space_clip/tracking_ops.c
index a4592e9fc25..b4990180b19 100644
--- a/source/blender/editors/space_clip/tracking_ops.c
+++ b/source/blender/editors/space_clip/tracking_ops.c
@@ -1170,7 +1170,7 @@ void CLIP_OT_select_grouped(wmOperatorType *ot)
/* identifiers */
ot->name= "Select Grouped";
- ot->description= "Joint Selected Tracks";
+ ot->description= "Select all tracks from specified group";
ot->idname= "CLIP_OT_select_grouped";
/* api callbacks */
@@ -2974,6 +2974,9 @@ static int join_tracks_exec(bContext *C, wmOperator *op)
if(TRACK_VIEW_SELECTED(sc, track) && track!=act_track) {
BKE_tracking_join_tracks(act_track, track);
+ if(tracking->stabilization.rot_track == track)
+ tracking->stabilization.rot_track= act_track;
+
BKE_tracking_free_track(track);
BLI_freelinkN(tracksbase, track);
}