fix bug 2010 (boundary effects at the end of text insets)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10445 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2005-09-15 13:53:38 +00:00
parent fd69d1cfe9
commit 6572d0d661
2 changed files with 14 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2005-09-13 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* text2.C (cursorEnd, cursorRight): do not set boundary to true at
end of paragraph. (bug 2010)
2005-09-10 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* text.C (leftMargin): check for inInset == 0

View File

@ -498,12 +498,13 @@ void LyXText::cursorEnd(LCursor & cur)
// empty text, end-1 is no valid position
return;
bool boundary = false;
if (!cur.paragraph().isLineSeparator(end-1) &&
!cur.paragraph().isNewline(end-1))
{
boundary = true;
} else if (end != cur.lastpos())
--end;
if (end != cur.lastpos()) {
if (!cur.paragraph().isLineSeparator(end-1)
&& !cur.paragraph().isNewline(end-1))
boundary = true;
else
--end;
}
setCursor(cur, cur.pit(), end, true, boundary);
}
@ -1020,7 +1021,8 @@ bool LyXText::cursorRight(LCursor & cur)
if (cur.pos() != cur.lastpos()) {
bool updateNeeded = false;
if (!checkAndActivateInset(cur, true)) {
if (cur.textRow().endpos() == (cur.pos() + 1) &&
if (cur.textRow().endpos() == cur.pos() + 1 &&
cur.textRow().endpos() != cur.lastpos() &&
!cur.paragraph().isLineSeparator(cur.pos()) &&
!cur.paragraph().isNewline(cur.pos()))
{