mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 05:25:26 +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);
|
||||
LASSERT(inset, /**/);
|
||||
|
||||
if (style.pass_thru && inset->lyxCode() != ARG_CODE) {
|
||||
if (style.pass_thru) {
|
||||
odocstringstream ods;
|
||||
inset->plaintext(ods, runparams);
|
||||
os << ods.str();
|
||||
|
Loading…
Reference in New Issue
Block a user