mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 10:18:50 +00:00
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24500 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
ec148ab77f
commit
133d84c42b
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user