mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Do not step counters in deleted material.
Also, display the counter as "#" if the inset is deleted.
This commit is contained in:
parent
cc4bfc7f04
commit
200064e9a4
@ -146,9 +146,13 @@ void InsetFlex::updateBuffer(ParIterator const & it, UpdateType utype)
|
||||
docstring const & count = il.counter();
|
||||
bool const have_counter = cnts.hasCounter(count);
|
||||
if (have_counter) {
|
||||
cnts.step(count, utype);
|
||||
custom_label += ' ' +
|
||||
cnts.theCounter(count, it.paragraph().getParLanguage(bp)->code());
|
||||
Paragraph const & par = it.paragraph();
|
||||
if (!par.isDeleted(it.pos())) {
|
||||
cnts.step(count, utype);
|
||||
custom_label += ' ' +
|
||||
cnts.theCounter(count, it.paragraph().getParLanguage(bp)->code());
|
||||
} else
|
||||
custom_label += ' ' + from_ascii("#");
|
||||
}
|
||||
setLabel(custom_label);
|
||||
|
||||
|
@ -84,9 +84,14 @@ void InsetFoot::updateBuffer(ParIterator const & it, UpdateType utype)
|
||||
InsetLayout const & il = getLayout();
|
||||
docstring const & count = il.counter();
|
||||
custom_label_ = translateIfPossible(il.labelstring());
|
||||
if (cnts.hasCounter(count))
|
||||
cnts.step(count, utype);
|
||||
custom_label_ += ' ' + cnts.theCounter(count, lang->code());
|
||||
|
||||
Paragraph const & par = it.paragraph();
|
||||
if (!par.isDeleted(it.pos())) {
|
||||
if (cnts.hasCounter(count))
|
||||
cnts.step(count, utype);
|
||||
custom_label_ += ' ' + cnts.theCounter(count, lang->code());
|
||||
} else
|
||||
custom_label_ += ' ' + from_ascii("#");
|
||||
setLabel(custom_label_);
|
||||
|
||||
InsetCollapsible::updateBuffer(it, utype);
|
||||
|
Loading…
Reference in New Issue
Block a user