Преглед на файлове

fix: deselect linear element when clicked inside bounding box outside editor (#5579)

Aakansha Doshi преди 2 години
родител
ревизия
27cf5ed17e
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/components/App.tsx

+ 1 - 1
src/components/App.tsx

@@ -4179,6 +4179,7 @@ class App extends React.Component<AppProps, AppState> {
         if (didDrag) {
           pointerDownState.lastCoords.x = pointerCoords.x;
           pointerDownState.lastCoords.y = pointerCoords.y;
+          pointerDownState.drag.hasOccurred = true;
           if (
             this.state.editingLinearElement &&
             !this.state.editingLinearElement.isDragging
@@ -4936,7 +4937,6 @@ class App extends React.Component<AppProps, AppState> {
       }
 
       if (
-        !this.state.selectedLinearElement &&
         !this.state.editingLinearElement &&
         !pointerDownState.drag.hasOccurred &&
         !this.state.isResizing &&