if (v.hitTest(mouseLocation)) {
moveOn(mouseLocation);
return;
}
}
graphPane.deselectVertices();
Set<SimpleVertex> simpleVertices = graphPane.getGraphModel().getSimpleVertices();
for (SimpleVertex v : simpleVertices) {
if (v.hitTest(mouseLocation)) {
if (!SelectingTool.isOnlySuperVerticesSelection() ||
v.getSuperVertex() == null || v.getSuperVertex().isHidden()) {