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

Sergey Sharybin g.ulairi at gmail.com
Fri Jun 17 17:00:28 CEST 2011


Revision: 37598
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=37598
Author:   nazgul
Date:     2011-06-17 15:00:28 +0000 (Fri, 17 Jun 2011)
Log Message:
-----------
Camera tracking integration
===========================

Made a typo when was applying locally created patch.
Fixes crash when switching to "Movie" in 3d viewport background.

Modified Paths:
--------------
    branches/soc-2011-tomato/source/blender/editors/space_view3d/view3d_draw.c

Modified: branches/soc-2011-tomato/source/blender/editors/space_view3d/view3d_draw.c
===================================================================
--- branches/soc-2011-tomato/source/blender/editors/space_view3d/view3d_draw.c	2011-06-17 14:47:41 UTC (rev 37597)
+++ branches/soc-2011-tomato/source/blender/editors/space_view3d/view3d_draw.c	2011-06-17 15:00:28 UTC (rev 37598)
@@ -1636,7 +1636,7 @@
 		if(bgpic->source==V3D_BGPIC_MOVIE) {
 			clip= bgpic->clip;
 
-			if((clip && clip->id.flag&LIB_DOIT)==0) {
+			if(clip && (clip->id.flag&LIB_DOIT)==0) {
 				draw_clip(clip, dt);
 
 				bgpic->clip->id.flag|= LIB_DOIT;




More information about the Bf-blender-cvs mailing list