]> git.lyx.org Git - features.git/blobdiff - src/tex2lyx/table.cpp
tex2lyx: tabular width in longtable is now possible (via xltabular).
[features.git] / src / tex2lyx / table.cpp
index 029dba65cb1e06542596a97611da441121b2dfb1..2007c1c5394dd25ff0236b56991638131e20e88e 100644 (file)
@@ -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) {