Default brush center has changed

This commit is contained in:
David Capello 2019-05-08 18:54:25 -03:00
parent 57e6fd35b4
commit 5337328c92

View File

@ -17,7 +17,7 @@ do
local c = Brush(4)
assert(c.type == BrushType.CIRCLE)
assert(c.size == 4)
assert(c.center == Point{ x=2, y=2 })
assert(c.center == Point{ x=1, y=1 })
end
do