]> git.lyx.org Git - features.git/commitdiff
Fix multiple tabular crashes. This needs some more work by someone who knows what...
authorAbdelrazak Younes <younes@lyx.org>
Fri, 20 Oct 2006 16:11:30 +0000 (16:11 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Fri, 20 Oct 2006 16:11:30 +0000 (16:11 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15412 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/insettabular.C

index d5e6dd5c0db8d51bc785242d0e9123f0a0dd7f44..5b12c948ac9b77f02d42d1bf3a39219a7b4246e3 100644 (file)
@@ -478,7 +478,7 @@ void InsetTabular::edit(LCursor & cur, bool left)
                cur.pit() = 0;
                cur.pos() = cur.lastpos(); // FIXME crude guess
        }
-       // this accesses the position cache before it is initialized
+       // FIXME: this accesses the position cache before it is initialized
        //resetPos(cur);
        //cur.bv().fitCursor();
 }
@@ -783,7 +783,8 @@ void InsetTabular::doDispatch(LCursor & cur, FuncRequest & cmd)
                break;
        }
 
-       resetPos(cur);
+       // FIXME: this accesses the position cache before it is initialized
+       //resetPos(cur);
        InsetTabularMailer(*this).updateDialog(&cur.bv());
 }
 
@@ -1302,7 +1303,9 @@ void InsetTabular::movePrevCell(LCursor & cur)
        }
        cur.pit() = cur.lastpit();
        cur.pos() = cur.lastpos();
-       resetPos(cur);
+
+       // FIXME: this accesses the position cache before it is initialized
+       //resetPos(cur);
 }