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:
@@ -177,7 +177,7 @@ OpenLayers.Handler.Feature = OpenLayers.Class(OpenLayers.Handler, {
|
|||||||
*/
|
*/
|
||||||
mousemove: function(evt) {
|
mousemove: function(evt) {
|
||||||
if (!this.callbacks['over'] && !this.callbacks['out']) {
|
if (!this.callbacks['over'] && !this.callbacks['out']) {
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
this.handle(evt);
|
this.handle(evt);
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
Reference in New Issue
Block a user