mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 02:14:50 +00:00
bugfix (too many \\ when writing gridded structures)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3498 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
00e2f3f631
commit
a64a948cea
@ -700,7 +700,7 @@ void MathGridInset::write(WriteStream & os) const
|
||||
os << eolString(row);
|
||||
}
|
||||
string const s = verboseHLine(rowinfo_[nrows()].lines_);
|
||||
if (!s.empty())
|
||||
if (!s.empty() && s != " ")
|
||||
os << "\\\\" << s;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user