mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Add cell number to current state in devel mode
This value is added when inside a texted inset with several cells (aka a tabular inset).
This commit is contained in:
parent
dc2ad44562
commit
e90b6f5a3b
@ -1952,6 +1952,8 @@ docstring Text::currentState(CursorData const & cur, bool devel_mode) const
|
||||
|
||||
if (devel_mode) {
|
||||
os << _(", Inset: ") << &cur.inset();
|
||||
if (cur.lastidx() > 0)
|
||||
os << _(", Cell: ") << cur.idx();
|
||||
os << _(", Paragraph: ") << cur.pit();
|
||||
os << _(", Id: ") << par.id();
|
||||
os << _(", Position: ") << cur.pos();
|
||||
|
Loading…
Reference in New Issue
Block a user