]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFoot.cpp
Allow row-breaking after some insets
[lyx.git] / src / insets / InsetFoot.cpp
index 5459f457c978970fdbd192df1c4d886e0aeebc35..5865c7d77ea4ab99e3ba107b16f60da5d72f3671 100644 (file)
@@ -86,12 +86,14 @@ void InsetFoot::updateBuffer(ParIterator const & it, UpdateType utype, bool cons
        custom_label_ = translateIfPossible(il.labelstring());
 
        int val = cnts.value(count);
-       if (cnts.hasCounter(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);
+               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, deleted);