mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
parent
06855a66ca
commit
b0db575dc1
@ -1991,7 +1991,7 @@ bool Text::read(Lexer & lex,
|
||||
}
|
||||
|
||||
|
||||
// Returns the current font and depth as a message.
|
||||
// Returns the current state (font, depth etc.) as a message for status bar.
|
||||
docstring Text::currentState(CursorData const & cur, bool devel_mode) const
|
||||
{
|
||||
LBUFERR(this == cur.text());
|
||||
@ -2021,7 +2021,7 @@ docstring Text::currentState(CursorData const & cur, bool devel_mode) const
|
||||
os << bformat(_("Font: %1$s"), font.stateText(&buf.params()));
|
||||
|
||||
// The paragraph depth
|
||||
int depth = cur.paragraph().getDepth();
|
||||
int depth = par.getDepth();
|
||||
if (depth > 0)
|
||||
os << bformat(_(", Depth: %1$d"), depth);
|
||||
|
||||
@ -2049,6 +2049,11 @@ docstring Text::currentState(CursorData const & cur, bool devel_mode) const
|
||||
}
|
||||
}
|
||||
|
||||
// Custom text style
|
||||
InsetLayout const & layout = cur.inset().getLayout();
|
||||
if (layout.lyxtype() == InsetLayout::CHARSTYLE)
|
||||
os << _(", Style: ") << translateIfPossible(layout.labelstring());
|
||||
|
||||
if (devel_mode) {
|
||||
os << _(", Inset: ") << &cur.inset();
|
||||
if (cur.lastidx() > 0)
|
||||
|
Loading…
Reference in New Issue
Block a user