From 18bb4621c39204396b02fb30da5f533aae65b834 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sat, 14 May 2022 15:09:49 -0700 Subject: [PATCH] draw lines by default Freehand strokes are a special case. Let's ignore them for a bit. --- main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.lua b/main.lua index d6e45c4..11a2809 100644 --- a/main.lua +++ b/main.lua @@ -34,7 +34,7 @@ lines = {} screenw, screenh, screenflags = 0, 0, nil -current_mode = 'freehand' +current_mode = 'line' -- All drawings span 100% of some conceptual 'page width' and divide it up -- into 256 parts. `drawingw` describes their width in pixels.