slightly tweak boundary between concerns

This commit is contained in:
Kartik K. Agaram 2022-05-12 08:29:00 -07:00
parent 07e2b7b897
commit 2e0929fab4
1 changed files with 1 additions and 1 deletions

View File

@ -40,8 +40,8 @@ function love.draw()
-- line drawing
love.graphics.setColor(0.75,0.75,0.75)
line.y = y
love.graphics.rectangle('line', 12,y, line.w,line.h)
y = y+line.h
love.graphics.rectangle('line', 12,line.y, line.w,line.h)
for _,shape in ipairs(line.shapes) do
if on_freehand(love.mouse.getX(),love.mouse.getY(), shape) then