Disable interface selection

This commit is contained in:
ziajka 2018-05-14 11:44:03 +02:00
parent efec6c4a04
commit c2eac40440

View File

@ -41,7 +41,8 @@ export class SelectionManager {
this.selectedNodes = this.getSelectedItemsInRectangle<Node>(this.nodesDataSource, rectangle);
this.selectedLinks = this.getSelectedItemsInRectangle<Link>(this.linksDataSource, rectangle);
this.selectedDrawings = this.getSelectedItemsInRectangle<Drawing>(this.drawingsDataSource, rectangle);
this.selectedInterfaceLabels = this.getSelectedInterfaceLabelsInRectangle(rectangle);
// don't select interfaces for now
// this.selectedInterfaceLabels = this.getSelectedInterfaceLabelsInRectangle(rectangle);
});
return this.subscription;
}