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;

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to