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 targetParent = targetTopic.getModel().getParent();
const sourceParent = sourceTopic.getModel().getParent(); const sourceParent = sourceTopic.getModel().getParent();
relationship.setVisibility(value && relationship.setVisibility(
(targetParent == null || !targetParent.areChildrenShrunken()) && value
(sourceParent == null || !sourceParent.areChildrenShrunken()), && (targetParent == null || !targetParent.areChildrenShrunken())
&& (sourceParent == null || !sourceParent.areChildrenShrunken()),
); );
}); });
} }
@ -1042,8 +1043,8 @@ class Topic extends NodeGraph {
}; };
const oldSize = this.getSize(); const oldSize = this.getSize();
const hasSizeChanged = oldSize.width !== roundedSize.width || const hasSizeChanged = oldSize.width !== roundedSize.width
oldSize.height !== roundedSize.height; || oldSize.height !== roundedSize.height;
if (hasSizeChanged || force) { if (hasSizeChanged || force) {
NodeGraph.prototype.setSize.call(this, roundedSize); NodeGraph.prototype.setSize.call(this, roundedSize);