]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFoot.cpp
Allow row-breaking after some insets
[lyx.git] / src / insets / InsetFoot.cpp
index 3331184887aa52ea0b6dc128b378ac0fff3bbf81..5865c7d77ea4ab99e3ba107b16f60da5d72f3671 100644 (file)
@@ -49,7 +49,7 @@ docstring InsetFoot::layoutName() const
 }
 
 
-void InsetFoot::updateBuffer(ParIterator const & it, UpdateType utype)
+void InsetFoot::updateBuffer(ParIterator const & it, UpdateType utype, bool const deleted)
 {
        BufferParams const & bp = buffer().masterBuffer()->params();
        Counters & cnts = bp.documentClass().counters();
@@ -85,16 +85,18 @@ void InsetFoot::updateBuffer(ParIterator const & it, UpdateType utype)
        docstring const & count = il.counter();
        custom_label_ = translateIfPossible(il.labelstring());
 
-       Paragraph const & par = it.paragraph();
-       if (!par.isDeleted(it.pos())) {
-               if (cnts.hasCounter(count))
-                       cnts.step(count, utype);
+       int val = cnts.value(count);
+       if (cnts.hasCounter(count)) {
+               cnts.step(count, utype);
                custom_label_ += ' ' + cnts.theCounter(count, lang->code());
+               if (deleted)
+                       // un-step after deleted counter
+                       cnts.set(count, val);
        } else
                custom_label_ += ' ' + from_ascii("#");
        setLabel(custom_label_);
 
-       InsetCollapsible::updateBuffer(it, utype);
+       InsetCollapsible::updateBuffer(it, utype, deleted);
        if (utype == OutputUpdate)
                cnts.restoreLastCounter();
 }