|
@@ -279,8 +279,8 @@ export class SBaseLineEdit extends SGraphEdit {
|
|
|
]);
|
|
|
}
|
|
|
} else if (this.status == SItemStatus.Normal) {
|
|
|
- this.moveToOrigin(this.x, this.y);
|
|
|
- return super.onMouseUp(event);
|
|
|
+ super.onMouseUp(event);
|
|
|
+ return true
|
|
|
}
|
|
|
|
|
|
this.curIndex = -1;
|
|
@@ -385,11 +385,10 @@ export class SBaseLineEdit extends SGraphEdit {
|
|
|
* @param x x 坐标
|
|
|
* @param y y 坐标
|
|
|
*/
|
|
|
- moveToOrigin(x: number, y: number): void {
|
|
|
- super.moveToOrigin(x, y);
|
|
|
+ moveToOrigin(): void {
|
|
|
this.line = this.line.map(t => {
|
|
|
- t.x = t.x + x;
|
|
|
- t.y = t.y + y;
|
|
|
+ t.x = t.x + this.x;
|
|
|
+ t.y = t.y + this.y;
|
|
|
return t;
|
|
|
});
|
|
|
|
|
@@ -526,6 +525,7 @@ export class SBaseLineEdit extends SGraphEdit {
|
|
|
* @return 对象数据
|
|
|
*/
|
|
|
toData(): any {
|
|
|
+ this.moveToOrigin()
|
|
|
const Line = [{ x: this.line[0].x, y: this.line[0].y }, { x: this.line[1].x, y: this.line[1].y }];
|
|
|
this.data.style.default.line = Line;
|
|
|
this.data.style.default.lineWidth = this.lineWidth;
|