mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-10 17:33:24 +01:00
Optimize redraw
This commit is contained in:
parent
160c0e1d94
commit
fe8af2f7a5
@ -1260,9 +1260,6 @@ abstract class Topic extends NodeGraph {
|
||||
this._outgoingLine = this.createConnectionLine(targetTopic);
|
||||
this._outgoingLine.setVisibility(this.isVisible());
|
||||
workspace.append(this._outgoingLine);
|
||||
|
||||
// Update all the children...
|
||||
this.getChildren().forEach((t) => t.redraw());
|
||||
result = true;
|
||||
}
|
||||
|
||||
@ -1271,8 +1268,6 @@ abstract class Topic extends NodeGraph {
|
||||
const connColorChanged = color !== this.getParent()!.getConnectionColor();
|
||||
if (connColorChanged) {
|
||||
this._outgoingLine.redraw();
|
||||
|
||||
this.getChildren().forEach((t) => t.redraw());
|
||||
result = true;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user