Flipped a return value here; this should be 'true', not 'false'. (See #1655)

git-svn-id: http://svn.openlayers.org/trunk/openlayers@7683 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
crschmidt
2008-08-03 12:24:18 +00:00
parent 693e6d07e3
commit cdd4c864ea

View File

@@ -177,7 +177,7 @@ OpenLayers.Handler.Feature = OpenLayers.Class(OpenLayers.Handler, {
*/
mousemove: function(evt) {
if (!this.callbacks['over'] && !this.callbacks['out']) {
return false;
return true;
}
this.handle(evt);
return true;