]> git.lyx.org Git - features.git/commitdiff
fix http://bugzilla.lyx.org/show_bug.cgi?id=4778
authorEdwin Leuven <e.leuven@gmail.com>
Tue, 6 May 2008 11:24:54 +0000 (11:24 +0000)
committerEdwin Leuven <e.leuven@gmail.com>
Tue, 6 May 2008 11:24:54 +0000 (11:24 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24635 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetTabular.cpp

index 2b2d57ae0fb57934d034fc5a585760a90d0392bb..3676b31bcf91d016e94c7f8548f7e906eb44cd73 100644 (file)
@@ -1852,7 +1852,7 @@ int Tabular::TeXCellPreamble(odocstream & os, idx_type cell, bool & ismulticol)
        col_type const nextcol = c + columnSpan(cell);
        bool colright = columnRightLine(c);
        bool colleft = columnLeftLine(c);
-       bool nextcolleft = nextcol < column_info.size() && colleft;
+       bool nextcolleft = nextcol < column_info.size() && columnLeftLine(nextcol);
        bool nextcellleft = nextcol < column_info.size() 
                && leftLine(cellIndex(r, nextcol));
        bool coldouble = colright && nextcolleft;