mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
fix: allow box selection of points when inside editor (#5594)
This commit is contained in:
parent
8f8dd1105f
commit
b5fd904808
4 changed files with 11 additions and 4 deletions
|
@ -424,7 +424,10 @@ export const _renderScene = ({
|
|||
!appState.editingLinearElement
|
||||
) {
|
||||
const locallySelectedElements = getSelectedElements(elements, appState);
|
||||
const showBoundingBox = shouldShowBoundingBox(locallySelectedElements);
|
||||
const showBoundingBox = shouldShowBoundingBox(
|
||||
locallySelectedElements,
|
||||
appState,
|
||||
);
|
||||
|
||||
const locallySelectedIds = locallySelectedElements.map(
|
||||
(element) => element.id,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue