about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--main.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.lua b/main.lua
index 5f415e4..85181f5 100644
--- a/main.lua
+++ b/main.lua
@@ -49,9 +49,9 @@ function love.draw()
                    end})
     elseif type(line) == 'table' then
       -- line drawing
-      love.graphics.setColor(0.75,0.75,0.75)
       line.y = y
       y = y+pixels(line.h)
+      love.graphics.setColor(0.75,0.75,0.75)
       love.graphics.rectangle('line', 12,line.y, drawingw,pixels(line.h))
 
       local mx,my = coord(love.mouse.getX()-12), coord(love.mouse.getY()-line.y)