Commit 835d7fdd authored by Nils Richerzhagen's avatar Nils Richerzhagen
Browse files

Smaller Boeppels for unselected nodes

parent 1f799953
......@@ -436,9 +436,8 @@ public class VisualizationTopologyView extends JFrame
PADDING * 2 + 1, PADDING * 2 + 1);
} else {
g2.setColor(Color.BLACK);
g2.fillOval((int) node.position.getX() - PADDING,
(int) node.position.getY() - PADDING,
PADDING * 2 + 1, PADDING * 2 + 1);
g2.fillOval((int) node.position.getX() - 2,
(int) node.position.getY() - 2, 5, 5);
}
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment