Merge d82e20ea7bc3d83ce0b899cad3585936c1e987a3 into 9e92ada61a1b4f0bf41387198ab46ca66170d713

This commit is contained in:
t-bltg 2022-04-27 22:32:46 -04:00 committed by GitHub
commit 94146302d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1778,7 +1778,7 @@ function gr_label_axis_3d(sp, letter)
end
function gr_add_title(sp, viewport_plotarea, viewport_subplot)
if sp[:title] != ""
if (ttl = sp[:title]) != ""
GR.savestate()
gr_set_font(titlefont(sp), sp)
loc = sp[:titlelocation]
@ -1792,8 +1792,33 @@ function gr_add_title(sp, viewport_plotarea, viewport_subplot)
xpos = gr_view_xcenter(viewport_plotarea)
halign = GR.TEXT_HALIGN_CENTER
end
if ttl isa AbstractVector
if length(ttl) > 0
w, h = gr_text_size(ttl[1])
if halign == GR.TEXT_HALIGN_CENTER
xpos -= .5w
elseif halign == GR.TEXT_HALIGN_RIGHT
xpos -= w
end
GR.settextalign(GR.TEXT_HALIGN_LEFT, GR.TEXT_VALIGN_TOP)
x, y = xpos, viewport_subplot[4]
for t in ttl
length(t) == 0 && continue
for (j, st) in enumerate(split(t, '\n'))
if j > 1
x = xpos
y -= h
end
gr_text(x, y, st)
w, h = gr_text_size(st)
end
x += w
end
end
else
GR.settextalign(halign, GR.TEXT_VALIGN_TOP)
gr_text(xpos, viewport_subplot[4], sp[:title])
gr_text(xpos, viewport_subplot[4], ttl)
end
GR.restorestate()
end
end