|
@@ -224,7 +224,7 @@ export default class History {
|
|
const preCircle = item.circle;
|
|
const preCircle = item.circle;
|
|
let newCircle = circleService.create(
|
|
let newCircle = circleService.create(
|
|
preCircle.center,
|
|
preCircle.center,
|
|
- preCircle.radiusX,
|
|
|
|
|
|
+ preCircle.radius || preCircle.radiusX,
|
|
preCircle.id
|
|
preCircle.id
|
|
);
|
|
);
|
|
|
|
|
|
@@ -572,7 +572,7 @@ export default class History {
|
|
const preCircle = item.circle;
|
|
const preCircle = item.circle;
|
|
let newCircle = circleService.create(
|
|
let newCircle = circleService.create(
|
|
preCircle.center,
|
|
preCircle.center,
|
|
- preCircle.radiusX,
|
|
|
|
|
|
+ preCircle.radius || preCircle.radiusX,
|
|
preCircle.id
|
|
preCircle.id
|
|
);
|
|
);
|
|
historyUtil.assignCircleFromCircle(newCircle, preCircle);
|
|
historyUtil.assignCircleFromCircle(newCircle, preCircle);
|