From 5a5c0f349dd60b52a0b4960705f5566e3864f6f6 Mon Sep 17 00:00:00 2001 From: euzuro Date: Tue, 11 Jul 2006 00:50:32 +0000 Subject: [PATCH] somehow this got left off during the LayersReworking fiasco. Luckily only Untiled.js was actually using it. tests seem to pass, seems alright git-svn-id: http://svn.openlayers.org/trunk/openlayers@926 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/OpenLayers/Map.js b/lib/OpenLayers/Map.js index fce40ed028..c56adc3fa7 100644 --- a/lib/OpenLayers/Map.js +++ b/lib/OpenLayers/Map.js @@ -500,7 +500,7 @@ OpenLayers.Map.prototype = { //send the move call to all the layers var bounds = this.getExtent(); for (var i = 0; i < this.layers.length; i++) { - this.layers[i].moveTo(bounds, zoomChanged); + this.layers[i].moveTo(bounds, zoomChanged, minor); } this.events.triggerEvent("move");