changeset 1420:2e0d9e68343d

Merge
author Chris Cannam
date Thu, 14 Feb 2019 13:12:44 +0000
parents 8e40faa56ffd (diff) e866102db32a (current diff)
children 70e93f996da6
files
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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;
 }
 
--- 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;
 }