From 8382a4f8271948ee595184c025155df4472fef9c Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Mon, 16 May 2022 21:38:01 -0700 Subject: [PATCH] make sure to show the border of a drawing immediately after creating it --- main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.lua b/main.lua index 6992a61..ad5e908 100644 --- a/main.lua +++ b/main.lua @@ -112,7 +112,7 @@ function love.draw() y = y+pixels(line.h) local pmx,pmy = love.mouse.getX(), love.mouse.getY() - if pmx > 16 and pmx < 16+drawingw and pmy > line.y and pmy < line.y+pixels(line.h) then + if pmx < 16+drawingw and pmy > line.y and pmy < line.y+pixels(line.h) then love.graphics.setColor(0.75,0.75,0.75) love.graphics.rectangle('line', 16,line.y, drawingw,pixels(line.h)) if icon[current_mode] then