fix: allow box selection of points when inside editor (#5594)

This commit is contained in:
Aakansha Doshi
2022-08-18 19:07:14 +05:30
committed by GitHub
parent 8f8dd1105f
commit b5fd904808
4 changed files with 11 additions and 4 deletions

View File

@@ -67,7 +67,7 @@ export const hitTest = (
if (
isElementSelected(appState, element) &&
shouldShowBoundingBox([element])
shouldShowBoundingBox([element], appState)
) {
return isPointHittingElementBoundingBox(element, point, threshold);
}