[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [39174] branches/soc-2011-tomato/source/ blender/editors/space_clip/tracking_ops.c: Camera tracking integration

Sergey Sharybin g.ulairi at gmail.com
Mon Aug 8 09:17:18 CEST 2011


Revision: 39174
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=39174
Author:   nazgul
Date:     2011-08-08 07:17:18 +0000 (Mon, 08 Aug 2011)
Log Message:
-----------
Camera tracking integration
===========================

Fixed incorrect check for selected bundles count in scene orientation operators.

Modified Paths:
--------------
    branches/soc-2011-tomato/source/blender/editors/space_clip/tracking_ops.c

Modified: branches/soc-2011-tomato/source/blender/editors/space_clip/tracking_ops.c
===================================================================
--- branches/soc-2011-tomato/source/blender/editors/space_clip/tracking_ops.c	2011-08-08 07:14:59 UTC (rev 39173)
+++ branches/soc-2011-tomato/source/blender/editors/space_clip/tracking_ops.c	2011-08-08 07:17:18 UTC (rev 39174)
@@ -1693,7 +1693,7 @@
 
 	track= clip->tracking.tracks.first;
 	while(track) {
-		if(TRACK_VIEW_SELECTED(sc, track))
+		if(TRACK_VIEW_SELECTED(sc, track) && (track->flag&TRACK_HAS_BUNDLE))
 			tot++;
 
 		track= track->next;




More information about the Bf-blender-cvs mailing list