Fix select interaction regression caused by #4391

This commit is contained in:
Andreas Hocevar
2015-11-18 11:57:18 +01:00
parent 17e69f9326
commit a8cd6b735f
2 changed files with 2 additions and 2 deletions

View File

@@ -283,7 +283,7 @@ ol.interaction.Select.handleEvent = function(mapBrowserEvent) {
* @param {ol.layer.Layer} layer Layer.
*/
function(feature, layer) {
if (layer && this.filter_(feature, layer)) {
if (!layer || this.filter_(feature, layer)) {
selected.push(feature);
this.addFeatureLayerAssociation_(feature, layer);
return !this.multi_;