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:
Juergen Spitzmueller 2013-04-08 11:07:02 +02:00
parent a49b620b95
commit d288b2d628

View File

@ -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();