Fix some script icons for non-square buttons

This commit is contained in:
Robin Gareus
2019-11-19 03:33:28 +01:00
parent 7aaf212a9b
commit cf8a808bd7
8 changed files with 14 additions and 10 deletions

View File

@@ -121,7 +121,7 @@ function factory () return function ()
end end
function icon (params) return function (ctx, width, height, fg)
local txt = Cairo.PangoLayout (ctx, "ArdourMono ".. math.ceil (width * .45) .. "px")
local txt = Cairo.PangoLayout (ctx, "ArdourMono ".. math.ceil (height / 3) .. "px")
txt:set_text ("CC\nPA")
local tw, th = txt:get_pixel_size ()
ctx:set_source_rgba (ARDOUR.LuaAPI.color_to_rgba (fg))