[Fix] Fixed locator not updated on new IActivityElement parent

This commit is contained in:
Robert von Burg 2023-11-27 15:48:21 +01:00
parent bd03144b6a
commit 4bee5990ac
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
2 changed files with 2 additions and 0 deletions

View File

@ -391,6 +391,7 @@ public class Action extends GroupedParameterizedElement implements IActivityElem
public void setParent(Activity activity) {
assertNotReadonly();
this.parent = activity;
this.locator = null;
}
@Override

View File

@ -892,6 +892,7 @@ public class Activity extends AbstractStrolchRootElement
public void setParent(Activity activity) {
assertNotReadonly();
this.parent = activity;
this.locator = null;
}
/**