Merge pull request #1237 from warmist/warmist-patch-1

Fix parse_inset in gui.lua
develop
Lethosor 2018-03-11 12:11:24 -04:00 committed by GitHub
commit 464052fe52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

@ -105,7 +105,7 @@ local function parse_inset(inset)
l = inset or 0
t,r,b = l,l,l
end
return l,r,t,b
return l,t,r,b
end
function inset_frame(rect, inset, gap)