]> git.lyx.org Git - features.git/commitdiff
fix http://bugzilla.lyx.org/show_bug.cgi?id=4756
authorEdwin Leuven <e.leuven@gmail.com>
Thu, 17 Apr 2008 15:07:04 +0000 (15:07 +0000)
committerEdwin Leuven <e.leuven@gmail.com>
Thu, 17 Apr 2008 15:07:04 +0000 (15:07 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24315 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetTabular.cpp

index bf37945766bb5d13fcc0f0929387eed0beea59ba..ff55f12708ea6d99beb67e9d5ba9801a5a5112d4 100644 (file)
@@ -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);
 }