X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathKern.cpp;h=61ee6ee5b7db7cd7855fb887b1ac3450a4bd7aff;hb=9296344b9a26191a2092d175a51e357ecc35145d;hp=8373b61fbf425988ff15afecaa9b0cd98cb0b97f;hpb=10c8d51b9032ebc968c50c740c9cb883b3b3cfb9;p=lyx.git diff --git a/src/mathed/InsetMathKern.cpp b/src/mathed/InsetMathKern.cpp index 8373b61fbf..61ee6ee5b7 100644 --- a/src/mathed/InsetMathKern.cpp +++ b/src/mathed/InsetMathKern.cpp @@ -49,7 +49,7 @@ void InsetMathKern::metrics(MetricsInfo & mi, Dimension & dim) const { dim.asc = 0; dim.des = 0; - dim.wid = wid_.inPixels(mi.base); + dim.wid = mi.base.inPixels(wid_); } @@ -77,4 +77,12 @@ void InsetMathKern::normalize(NormalStream & os) const } +void InsetMathKern::infoize2(odocstream & os) const +{ + os << "Kern"; + if (!wid_.empty()) + os << ": " << from_utf8(wid_.asLatexString()); +} + + } // namespace lyx