From: Edwin Leuven Date: Thu, 17 Apr 2008 15:07:04 +0000 (+0000) Subject: fix http://bugzilla.lyx.org/show_bug.cgi?id=4756 X-Git-Tag: 1.6.10~5147 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=398d9fdfbbc1ca1225c456b66978cf6a3a54fe63;p=features.git fix http://bugzilla.lyx.org/show_bug.cgi?id=4756 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24315 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/insets/InsetTabular.cpp b/src/insets/InsetTabular.cpp index bf37945766..ff55f12708 100644 --- a/src/insets/InsetTabular.cpp +++ b/src/insets/InsetTabular.cpp @@ -819,7 +819,7 @@ bool Tabular::topAlreadyDrawn(idx_type cell) const if (row == 0) return false; idx_type i = cellIndex(row - 1, cellColumn(cell)); - return !rowBottomLine(row - 1) && bottomLine(i); + return !rowTopLine(row) && bottomLine(i); }