From d5b35d1740e55654eb4fd19d3594df7715a0bb39 Mon Sep 17 00:00:00 2001 From: "Val Erastov (xibyte)" Date: Mon, 9 Mar 2020 23:56:31 -0700 Subject: [PATCH] fix selection marker --- web/app/sketcher/selectionMatcher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/sketcher/selectionMatcher.js b/web/app/sketcher/selectionMatcher.js index e3995c92..2f5597b8 100644 --- a/web/app/sketcher/selectionMatcher.js +++ b/web/app/sketcher/selectionMatcher.js @@ -104,7 +104,7 @@ export class MatchIndex { for (let type of types) { const info = this.typeMap.get(type.prototype._class); if (!info) { - return false; + continue; } const toAdd = Math.min(quantity, info.objects.length - info.hits); if (this.result) {