From 398d9fdfbbc1ca1225c456b66978cf6a3a54fe63 Mon Sep 17 00:00:00 2001 From: Edwin Leuven Date: Thu, 17 Apr 2008 15:07:04 +0000 Subject: [PATCH] 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 --- src/insets/InsetTabular.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.2