浏览代码

fix alt+cmd lasso getting cut off

Ryan Di 1 月之前
父节点
当前提交
4a4c378c91
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      packages/excalidraw/components/App.tsx

+ 2 - 1
packages/excalidraw/components/App.tsx

@@ -8450,7 +8450,8 @@ class App extends React.Component<AppProps, AppState> {
         if (
           this.state.activeTool.type === "lasso" &&
           this.lassoTrail.hasCurrentTrail &&
-          !(this.isMobileOrTablet() && pointerDownState.hit.element)
+          !(this.isMobileOrTablet() && pointerDownState.hit.element) &&
+          !this.state.activeTool.fromSelection
         ) {
           return;
         }