git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25198 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Edwin Leuven 2008-06-09 08:11:46 +00:00
parent cd26f796d3
commit dbc07ef630

View File

@ -1096,7 +1096,7 @@ bool Tabular::columnLeftLine(col_type c) const
++nrows_left;
}
}
return nrows_left >= total / 2;
return 2 * nrows_left >= total;
}
@ -1119,7 +1119,7 @@ bool Tabular::columnRightLine(col_type c) const
++nrows_right;
}
}
return nrows_right >= total / 2;
return 2 * nrows_right >= total;
}