mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Fixup f96b99dc
: do not initialize cache too late
This commit is contained in:
parent
a97b384b07
commit
4d9a2c2e59
@ -271,6 +271,10 @@ MathClass InsetMathScript::mathClass() const
|
|||||||
|
|
||||||
void InsetMathScript::metrics(MetricsInfo & mi, Dimension & dim) const
|
void InsetMathScript::metrics(MetricsInfo & mi, Dimension & dim) const
|
||||||
{
|
{
|
||||||
|
// we store this, because it is much easier
|
||||||
|
has_limits_ = hasLimits(mi.base.font);
|
||||||
|
|
||||||
|
// Compute metrics of the available cells
|
||||||
Dimension dim0;
|
Dimension dim0;
|
||||||
Dimension dim1;
|
Dimension dim1;
|
||||||
Dimension dim2;
|
Dimension dim2;
|
||||||
@ -284,8 +288,6 @@ void InsetMathScript::metrics(MetricsInfo & mi, Dimension & dim) const
|
|||||||
if (nargs() > 2)
|
if (nargs() > 2)
|
||||||
cell(2).metrics(mi, dim2, !has_limits_);
|
cell(2).metrics(mi, dim2, !has_limits_);
|
||||||
}
|
}
|
||||||
// we store this, because it is much easier
|
|
||||||
has_limits_ = hasLimits(mi.base.font);
|
|
||||||
|
|
||||||
dim.wid = 0;
|
dim.wid = 0;
|
||||||
BufferView & bv = *mi.base.bv;
|
BufferView & bv = *mi.base.bv;
|
||||||
|
Loading…
Reference in New Issue
Block a user