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 ...@@ -436,9 +436,8 @@ public class VisualizationTopologyView extends JFrame
PADDING * 2 + 1, PADDING * 2 + 1); PADDING * 2 + 1, PADDING * 2 + 1);
} else { } else {
g2.setColor(Color.BLACK); g2.setColor(Color.BLACK);
g2.fillOval((int) node.position.getX() - PADDING, g2.fillOval((int) node.position.getX() - 2,
(int) node.position.getY() - PADDING, (int) node.position.getY() - 2, 5, 5);
PADDING * 2 + 1, PADDING * 2 + 1);
} }
} }
} }
......
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