Bläddra i källkod

use commitToHistory prop for handling draw history (#1595)

David Luzar 5 år sedan
förälder
incheckning
828c9c4d65
2 ändrade filer med 1 tillägg och 2 borttagningar
  1. 1 1
      src/actions/actionFinalize.tsx
  2. 0 1
      src/components/App.tsx

+ 1 - 1
src/actions/actionFinalize.tsx

@@ -89,7 +89,7 @@ export const actionFinalize = register({
               }
             : appState.selectedElementIds,
       },
-      commitToHistory: false,
+      commitToHistory: appState.elementType === "draw",
     };
   },
   keyTest: (event, appState) =>

+ 0 - 1
src/components/App.tsx

@@ -2340,7 +2340,6 @@ class App extends React.Component<any, AppState> {
 
       if (draggingElement?.type === "draw") {
         this.actionManager.executeAction(actionFinalize);
-        history.resumeRecording();
         return;
       }
       if (isLinearElement(draggingElement)) {