mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 21:40:19 +00:00
Fix multicolumn output.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32526 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
93c121cfaa
commit
5f04bedb1c
@ -2672,7 +2672,7 @@ docstring Tabular::xhtmlRow(XHTMLStream & xs, row_type row,
|
||||
attr << "'";
|
||||
|
||||
if (isMultiColumn(cell))
|
||||
attr << " colspan='" << j + columnSpan(cell) - 1<< "'";
|
||||
attr << " colspan='" << columnSpan(cell) << "'";
|
||||
|
||||
xs << StartTag("td", attr.str());
|
||||
ret += cellInset(cell)->xhtml(xs, runparams);
|
||||
|
Loading…
Reference in New Issue
Block a user