} else {
Set<SuperVertex> superVertices = graphPane.getGraphModel().getSuperVertices();
for (SuperVertex v : superVertices) {
if (v.isInRectangleTest(SelectingTool.left, mouseLocation)) {
graphPane.selectVertex(v);
}
}
if (!SelectingTool.isOnlySuperVerticesSelection) {
Set<SimpleVertex> simpleVertices = graphPane.getGraphModel().getSimpleVertices();
for (SimpleVertex v : simpleVertices) {