Improve metrics for \limits in display mode

(cherry picked from commit 8d54457dbf)
This commit is contained in:
Jean-Marc Lasgouttes 2020-07-17 18:48:39 +02:00
parent d968717940
commit 67c0ca678b
2 changed files with 3 additions and 2 deletions

View File

@ -298,9 +298,9 @@ void InsetMathScript::metrics(MetricsInfo & mi, Dimension & dim) const
cell(0).metrics(mi, dim0);
Changer dummy = mi.base.changeScript();
if (nargs() > 1)
cell(1).metrics(mi, dim1);
cell(1).metrics(mi, dim1, !hasLimits());
if (nargs() > 2)
cell(2).metrics(mi, dim2);
cell(2).metrics(mi, dim2, !hasLimits());
dim.wid = 0;
BufferView & bv = *mi.base.bv;

View File

@ -76,6 +76,7 @@ What's new
- Fix display bug when typing in a paragraph where row heights change (bug 11601).
- Fix spacing of limits of sum-like operators in display style.
* INTERNALS