From 650bb156d9e4ddb815bd9cf674a37f9f04f51c05 Mon Sep 17 00:00:00 2001 From: Juergen Spitzmueller Date: Mon, 25 Jun 2018 11:52:56 +0200 Subject: [PATCH] tex2lyx: tabular width in longtable is now possible (via xltabular). --- src/tex2lyx/table.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tex2lyx/table.cpp b/src/tex2lyx/table.cpp index 029dba65cb..2007c1c539 100644 --- a/src/tex2lyx/table.cpp +++ b/src/tex2lyx/table.cpp @@ -1436,9 +1436,9 @@ void handle_tabular(Parser & p, ostream & os, string const & name, if (!halign.empty()) os << write_attribute("longtabularalignment", halign); } else - os << write_attribute("tabularvalignment", tabularvalignment) - << write_attribute("tabularwidth", tabularwidth); - os << ">\n"; + os << write_attribute("tabularvalignment", tabularvalignment); + + os << write_attribute("tabularwidth", tabularwidth) << ">\n"; //cerr << "// after header\n"; for (size_t col = 0; col < colinfo.size(); ++col) {