fix alt+cmd lasso getting cut off

This commit is contained in:
Ryan Di
2025-08-06 19:28:49 +10:00
parent a22f311bab
commit 4a4c378c91

View File

@@ -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;
}