Skip to content
Snippets Groups Projects
Commit 2e9835f9 authored by Lukas Ladenberger's avatar Lukas Ladenberger
Browse files

fixed bug: problem with editing size and coordinates of cloned controls

(the attributes of the original control were set)
parent 2cd26154
No related branches found
No related tags found
No related merge requests found
......@@ -55,10 +55,8 @@ public abstract class AbstractAttribute implements IPropertySource, Cloneable {
}
public void addChild(AbstractAttribute atr) {
if (!getChildren().containsKey(atr.getID())) {
getChildren().put(atr.getID(), atr);
}
}
public Boolean hasChildren() {
return !getChildren().isEmpty();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment