# HG changeset patch # User Chris Cannam # Date 1184274643 0 # Node ID e27f546f83ad6ae0bdac4a5ac344b9b0f16389b0 # Parent cd2492c5fe45f5c46ce52e77fa44e7abce5578b6 * Fix failure to auto-calculate bounds on time-value or note model loaded from session file if min and max not specified in the model * Attempt to work out why some points in time-value layer are not being locally illuminated when expected, and why models are loaded from sv file without their names -- both failed so far... diff -r cd2492c5fe45 -r e27f546f83ad layer/TimeValueLayer.cpp --- a/layer/TimeValueLayer.cpp Thu Jul 12 16:14:59 2007 +0000 +++ b/layer/TimeValueLayer.cpp Thu Jul 12 21:10:43 2007 +0000 @@ -566,6 +566,7 @@ if (v->shouldIlluminateLocalFeatures(this, localPos)) { SparseTimeValueModel::PointList localPoints = getLocalPoints(v, localPos.x()); + std::cerr << "TimeValueLayer: " << localPoints.size() << " local points" << std::endl; if (!localPoints.empty()) illuminateFrame = localPoints.begin()->frame; }