applications/drone-command/src/views/areaManage/partition/shapeTools/edit/EditEllipseTool.js
@@ -85,9 +85,15 @@ const local = cartesianToLocal(this.centerCartesian, position) if (this.dragType === 'major') { this.semiMajor = Math.max(1, Math.abs(local.x)) if (this.semiMajor < this.semiMinor) { this.semiMajor = this.semiMinor } } if (this.dragType === 'minor') { this.semiMinor = Math.max(1, Math.abs(local.y)) if (this.semiMinor > this.semiMajor) { this.semiMinor = this.semiMajor } } this.updateAxisPoints() }