13
0

consistent height of a-eq a-hp/lp

This commit is contained in:
Robin Gareus 2016-07-14 16:48:28 +02:00
parent 8444837b71
commit 543e230f79

View File

@ -228,7 +228,7 @@ function render_inline (ctx, w, max_h)
end
-- calc height of inline display
local h = math.ceil (w * 10 / 16) -- use 16:10 aspect
local h = 1 | math.ceil (w * 9 / 16) -- use 16:9 aspect, odd number of y pixels
if (h > max_h) then h = max_h end -- but at most max-height
-- ctx is a http://cairographics.org/ context