Merge branch 'feature/svg_icons' into develop

This commit is contained in:
Paulo Gustavo Veiga 2021-12-27 12:34:31 -08:00
commit d2396fcb95

View File

@ -972,9 +972,10 @@ class Topic extends NodeGraph {
const targetParent = targetTopic.getModel().getParent();
const sourceParent = sourceTopic.getModel().getParent();
relationship.setVisibility(value &&
(targetParent == null || !targetParent.areChildrenShrunken()) &&
(sourceParent == null || !sourceParent.areChildrenShrunken()),
relationship.setVisibility(
value
&& (targetParent == null || !targetParent.areChildrenShrunken())
&& (sourceParent == null || !sourceParent.areChildrenShrunken()),
);
});
}
@ -1042,8 +1043,8 @@ class Topic extends NodeGraph {
};
const oldSize = this.getSize();
const hasSizeChanged = oldSize.width !== roundedSize.width ||
oldSize.height !== roundedSize.height;
const hasSizeChanged = oldSize.width !== roundedSize.width
|| oldSize.height !== roundedSize.height;
if (hasSizeChanged || force) {
NodeGraph.prototype.setSize.call(this, roundedSize);
@ -1340,4 +1341,4 @@ class Topic extends NodeGraph {
}
}
export default Topic;
export default Topic;