From bfe1ab8ee08101a30200e05212a26b99a92ca254 Mon Sep 17 00:00:00 2001 From: Matt Low Date: Sat, 14 Nov 2020 22:10:22 +0400 Subject: [PATCH] Default line width should be 1 --- geom/draw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geom/draw.py b/geom/draw.py index dd0de70..903ec1f 100644 --- a/geom/draw.py +++ b/geom/draw.py @@ -12,7 +12,7 @@ def init(): freetype.init() FONT = freetype.SysFont('Arial', 16) -def line(surface, color, start, end, width=0): +def line(surface, color, start, end, width=1): pygame.draw.line(surface, color, add(*OFFSET, *start), add(*OFFSET, *end), width)