git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24500 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Edwin Leuven 2008-04-25 11:56:21 +00:00
parent ec148ab77f
commit 133d84c42b

View File

@ -1086,7 +1086,7 @@ bool Tabular::columnLeftLine(col_type c) const
idx_type i = cellIndex(r, c);
if (c == cellColumn(i)) {
++total;
bool right = c - 1 > 0 && cellInfo(cellIndex(r, c - 1)).right_line;
bool right = c > 0 && cellInfo(cellIndex(r, c - 1)).right_line;
if (cellInfo(i).left_line || right)
++nrows_left;
}