Correct position of links

This commit is contained in:
ziajka 2018-03-27 16:57:39 +02:00
parent f03abfe761
commit 1dc911fc92

View File

@ -23,6 +23,10 @@ export class LayersWidget implements Widget {
.exit() .exit()
.remove(); .remove();
this.graphLayout
.getLinksWidget()
.draw(layers_selection);
this.graphLayout this.graphLayout
.getNodesWidget() .getNodesWidget()
.draw(layers_selection); .draw(layers_selection);
@ -31,8 +35,5 @@ export class LayersWidget implements Widget {
.getDrawingsWidget() .getDrawingsWidget()
.draw(layers_selection); .draw(layers_selection);
this.graphLayout
.getLinksWidget()
.draw(layers_selection);
} }
} }