diff --git a/point.py b/point.py index 8924288..c10b69b 100644 --- a/point.py +++ b/point.py @@ -38,7 +38,7 @@ class Point(): center_y = height - (self.get_y() * (height / max_y)) if center_x <= width and center_y <= height: canvas.create_oval(center_x - radius, center_y - radius, \ - center_x + radius, center_y + radius, fill=color) + center_x + radius, center_y + radius, fill=color, outline=color) return center_x, center_y def get_random(min_x=0, max_x=100, min_y=0, max_y=100):