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:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-11-28 11:18:53 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-11-28 11:18:53 +0400
commitf1538cff30a59019fca3d8e19d555ad4c0467965 (patch)
tree6f42c7c20e7e0960bb5fad444d159abc6d91bbeb /source/blender/editors/space_clip
parent2e4d1222c8ff762fe7b69e2d305abd6b5d8d2f57 (diff)
Fix typo in track selection operator.
Found by Campbell Barton, thanks.
Diffstat (limited to 'source/blender/editors/space_clip')
-rw-r--r--source/blender/editors/space_clip/tracking_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_clip/tracking_ops.c b/source/blender/editors/space_clip/tracking_ops.c
index 6eb5e511bc4..695de548ec2 100644
--- a/source/blender/editors/space_clip/tracking_ops.c
+++ b/source/blender/editors/space_clip/tracking_ops.c
@@ -684,7 +684,7 @@ static int track_mouse_area(SpaceClip *sc, float co[2], MovieTrackingTrack *trac
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)