This simple patch partially restores the improvements to the cursor display logic I made some time ago. Now you don't lose the cursor entirely whilst holding down right arrow.
However, the risk of regressions is high. I would like, however, to apply the patch and ask everyone to keep a look out for any cursor droppings they spot. OK ? thanks john Index: frontends/screen.C =================================================================== RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/frontends/screen.C,v retrieving revision 1.94 diff -u -a -p -r1.94 screen.C --- frontends/screen.C 7 Apr 2004 20:20:13 -0000 1.94 +++ frontends/screen.C 19 Apr 2004 02:39:21 -0000 @@ -270,6 +270,8 @@ void LyXScreen::redraw(BufferView & bv) expose(0, 0, workarea().workWidth(), workarea().workHeight()); workarea().getPainter().end(); + + showCursor(bv); }