mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-10 18:58:10 +00:00
Revert "Do not pass thru argument of pass-thru layout literally"
This reverts commit 4564c88469
.
The bug is actually elsewhere.
This commit is contained in:
parent
a49b620b95
commit
d288b2d628
@ -1045,7 +1045,7 @@ void Paragraph::Private::latexInset(BufferParams const & bparams,
|
|||||||
Inset * inset = owner_->getInset(i);
|
Inset * inset = owner_->getInset(i);
|
||||||
LASSERT(inset, /**/);
|
LASSERT(inset, /**/);
|
||||||
|
|
||||||
if (style.pass_thru && inset->lyxCode() != ARG_CODE) {
|
if (style.pass_thru) {
|
||||||
odocstringstream ods;
|
odocstringstream ods;
|
||||||
inset->plaintext(ods, runparams);
|
inset->plaintext(ods, runparams);
|
||||||
os << ods.str();
|
os << ods.str();
|
||||||
|
Loading…
Reference in New Issue
Block a user