# HG changeset patch # User Chris Cannam # Date 1550149964 0 # Node ID 2e0d9e68343da9010a19aafdb9551f40cd7956e0 # Parent 8e40faa56ffdf7e922783f3d822f5fb9e8d1937f# Parent e866102db32a604c136e5b86082e38bd615da444 Merge diff -r e866102db32a -r 2e0d9e68343d layer/Colour3DPlotLayer.cpp --- a/layer/Colour3DPlotLayer.cpp Thu Feb 14 13:04:57 2019 +0000 +++ b/layer/Colour3DPlotLayer.cpp Thu Feb 14 13:12:44 2019 +0000 @@ -647,6 +647,9 @@ bool Colour3DPlotLayer::isLayerScrollable(const LayerGeometryProvider * /* v */) const { + // we do our own cacheing, and don't want to be responsible for + // guaranteeing to get an invisible seam if someone else scrolls + // us and we just fill in return false; } diff -r e866102db32a -r 2e0d9e68343d layer/SpectrogramLayer.cpp --- a/layer/SpectrogramLayer.cpp Thu Feb 14 13:04:57 2019 +0000 +++ b/layer/SpectrogramLayer.cpp Thu Feb 14 13:12:44 2019 +0000 @@ -1056,6 +1056,9 @@ bool SpectrogramLayer::isLayerScrollable(const LayerGeometryProvider *) const { + // we do our own cacheing, and don't want to be responsible for + // guaranteeing to get an invisible seam if someone else scrolls + // us and we just fill in return false; }