From e769255c0522e92ffd723511eafeda776cc50d0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9a=20Saviot?= Date: Thu, 6 Dec 2018 11:55:29 +0100 Subject: [PATCH] [python/turtle] Default pen size is 1 --- python/port/mod/turtle/turtle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/port/mod/turtle/turtle.h b/python/port/mod/turtle/turtle.h index b054e9a14..caf29b3da 100644 --- a/python/port/mod/turtle/turtle.h +++ b/python/port/mod/turtle/turtle.h @@ -28,7 +28,7 @@ public: m_penDown(true), m_visible(true), m_speed(k_defaultSpeed), - m_penSize(5), + m_penSize(1), m_mileage(0), m_drawn(false), m_underneathPixelBuffer(nullptr),