Apply fixed delta only if points.length > 1

This commit is contained in:
zsviczian
2025-08-07 21:28:30 +02:00
committed by GitHub
parent df25de7e68
commit 2df323a5c3

View File

@@ -9107,7 +9107,7 @@ class App extends React.Component<AppProps, AppState> {
newElement &&
!multiElement
) {
if (this.device.isTouchScreen) {
if (this.device.isTouchScreen && newElement.points.length > 1) {
const FIXED_DELTA_X = Math.min(
(this.state.width * 0.7) / this.state.zoom.value,
100,