commit 650bb156d9e4ddb815bd9cf674a37f9f04f51c05
Author: Juergen Spitzmueller <[email protected]>
Date: Mon Jun 25 11:52:56 2018 +0200
tex2lyx: tabular width in longtable is now possible (via xltabular).
---
src/tex2lyx/table.cpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/tex2lyx/table.cpp b/src/tex2lyx/table.cpp
index 029dba6..2007c1c 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) {