mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-11-14 17:54:47 +01:00
feat: hide bbox when dragging points
This commit is contained in:
@@ -330,7 +330,10 @@ export const hasBoundingBox = (
|
|||||||
appState: InteractiveCanvasAppState,
|
appState: InteractiveCanvasAppState,
|
||||||
editorInterface: EditorInterface,
|
editorInterface: EditorInterface,
|
||||||
) => {
|
) => {
|
||||||
if (appState.selectedLinearElement?.isEditing) {
|
if (
|
||||||
|
appState.selectedLinearElement?.isEditing ||
|
||||||
|
appState.selectedLinearElement?.isDragging
|
||||||
|
) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (elements.length > 1) {
|
if (elements.length > 1) {
|
||||||
|
|||||||
Reference in New Issue
Block a user