sourceRectAtTime box changing height
Hi there,
I have a lower third set up with 3 auto-sizing text boxes. The "Company Name" position is tied to the end of "Person Name".

If I use a name that has letters with ascenders and descenders the "Company Name" box gets shifted down and no longer overlaps.

Is there a way I can make it so that the "Person Name" box is always the height of a name with both ascenders and descenders even if it has none?
Expression on "size" property
s=thisComp.layer("Left - Person Name");
w=s.sourceRectAtTime().width;
h=s.sourceRectAtTime().height;
[w,h]Expression on "position" property
var s=thisComp.layer("Left - Person Name");
var w=s.sourceRectAtTime().width/2;
var h=s.sourceRectAtTime().height/2;
var l=s.sourceRectAtTime().left;
var t=s.sourceRectAtTime().top;
[w+l,h+t];Thanks in advanced
