mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 19:07:45 +00:00
Status bar information for InsetMathKern
\mkern is invisible in mathed as a consequence of 10c8d51b
. Add information in
the status bar when it is there.
This commit is contained in:
parent
2f03e156ce
commit
750cbde62e
@ -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
|
||||
|
@ -43,6 +43,8 @@ public:
|
||||
///
|
||||
void htmlize(HtmlStream &) const { }
|
||||
///
|
||||
void infoize2(odocstream & os) const;
|
||||
///
|
||||
InsetCode lyxCode() const { return MATH_KERN_CODE; }
|
||||
|
||||
private:
|
||||
|
Loading…
Reference in New Issue
Block a user