Consider nesting when checking whether an inset is in a title

Amends 0bddf448ef
This commit is contained in:
Juergen Spitzmueller 2020-08-09 12:01:49 +02:00
parent 9fffb7c614
commit e417597597

View File

@ -873,6 +873,14 @@ void InsetText::updateBuffer(ParIterator const & it, UpdateType utype, bool cons
// Record in this inset is embedded in a title layout
// This is needed to decide when \maketitle is output.
intitle_context_ = it.paragraph().layout().intitle;
// Also check embedding layouts
size_t const n = it.depth();
for (size_t i = 0; i < n; ++i) {
if (it[i].paragraph().layout().intitle) {
intitle_context_ = true;
break;
}
}
} else {
DocumentClass const & tclass = buffer().masterBuffer()->params().documentClass();
// Note that we do not need to call: