Fix parse_inset in gui.lua

It was used in different order than the return happened.
develop
Warmist 2018-03-11 12:40:30 +02:00 committed by GitHub
parent 11c6042416
commit 25d2938477
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)