X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathXYMatrix.cpp;h=f559aa2d1ab84124474493e8620d46f78e6c3b00;hb=9296344b9a26191a2092d175a51e357ecc35145d;hp=95941b85ce0cdf9faa719180345e9c66d3f73e00;hpb=460a764b7f601871dbb8ed4ad0f8260e7cdad509;p=lyx.git diff --git a/src/mathed/InsetMathXYMatrix.cpp b/src/mathed/InsetMathXYMatrix.cpp index 95941b85ce..f559aa2d1a 100644 --- a/src/mathed/InsetMathXYMatrix.cpp +++ b/src/mathed/InsetMathXYMatrix.cpp @@ -12,9 +12,11 @@ #include "InsetMathXYMatrix.h" -#include "LaTeXFeatures.h" #include "MathStream.h" +#include "LaTeXFeatures.h" +#include "MetricsInfo.h" + #include namespace lyx { @@ -47,12 +49,20 @@ int InsetMathXYMatrix::rowsep() const void InsetMathXYMatrix::metrics(MetricsInfo & mi, Dimension & dim) const { - if (mi.base.style == LM_ST_DISPLAY) - mi.base.style = LM_ST_TEXT; + Changer dummy2 = mi.base.changeEnsureMath(); + Changer dummy = mi.base.changeArray(); InsetMathGrid::metrics(mi, dim); } +void InsetMathXYMatrix::draw(PainterInfo & pi, int x, int y) const +{ + Changer dummy2 = pi.base.changeEnsureMath(); + Changer dummy = pi.base.changeArray(); + InsetMathGrid::draw(pi, x, y); +} + + void InsetMathXYMatrix::write(WriteStream & os) const { MathEnsurer ensurer(os); @@ -150,9 +160,9 @@ void InsetMathXYMatrix::mathmlize(MathStream &) const } -void InsetMathXYMatrix::htmlize(HtmlStream &) const +void InsetMathXYMatrix::htmlize(HtmlStream &) const { - throw MathExportException(); + throw MathExportException(); }