Push overlayItems in selector getObjects as an array for consistency

This commit is contained in:
Philip Matsson
2024-09-24 17:33:32 +02:00
committed by Matthieu Baumann
parent ddfd5ead05
commit 35f13fe1f0

View File

@@ -163,7 +163,7 @@ export class Selector {
} }
if (o.intersectsBBox(x, y, w, h, view)) { if (o.intersectsBBox(x, y, w, h, view)) {
objList.push(o); objList.push([o]);
} }
} }
} }