[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [42209] trunk/blender/source/blender/ editors/space_clip/tracking_ops.c: Fix typo in track selection operator.

Sergey Sharybin sergey.vfx at gmail.com
Mon Nov 28 08:19:05 CET 2011


Revision: 42209
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=42209
Author:   nazgul
Date:     2011-11-28 07:18:53 +0000 (Mon, 28 Nov 2011)
Log Message:
-----------
Fix typo in track selection operator.

Found by Campbell Barton, thanks.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_clip/tracking_ops.c

Modified: trunk/blender/source/blender/editors/space_clip/tracking_ops.c
===================================================================
--- trunk/blender/source/blender/editors/space_clip/tracking_ops.c	2011-11-28 07:02:38 UTC (rev 42208)
+++ trunk/blender/source/blender/editors/space_clip/tracking_ops.c	2011-11-28 07:18:53 UTC (rev 42209)
@@ -684,7 +684,7 @@
 	epsy= MIN4(track->pat_min[1]-track->search_min[1], track->search_max[1]-track->pat_max[1],
 	           fabsf(track->pat_min[1]), fabsf(track->pat_max[1])) / 2;
 
-	epsx= MAX2(epsy, 2.0f / width);
+	epsx= MAX2(epsx, 2.0f / width);
 	epsy= MAX2(epsy, 2.0f / height);
 
 	if(sc->flag&SC_SHOW_MARKER_SEARCH)




More information about the Bf-blender-cvs mailing list