mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-26 14:15:32 +00:00
Alfredo getchar() fix
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6751 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
10f2975d95
commit
379097c72c
@ -1,3 +1,7 @@
|
||||
2003-04-09 Alfredo Braunstein <abraunst@libero.it>
|
||||
|
||||
* text2.C (cursorRight): a getChar assert fixed
|
||||
|
||||
2003-04-09 Lars Gullik Bjønnes <larsbj@gullik.net>
|
||||
|
||||
* text2.C (getFont): change to take a ParagraphList::iterator
|
||||
|
@ -2055,10 +2055,13 @@ void LyXText::cursorLeft(bool internal)
|
||||
|
||||
void LyXText::cursorRight(bool internal)
|
||||
{
|
||||
if (!internal && cursor.boundary() &&
|
||||
!cursor.par()->isNewline(cursor.pos()))
|
||||
bool const at_end = (cursor.pos() == cursor.par()->size());
|
||||
bool const at_newline = !at_end &&
|
||||
cursor.par()->isNewline(cursor.pos());
|
||||
|
||||
if (!internal && cursor.boundary() && !at_newline)
|
||||
setCursor(cursor.par(), cursor.pos(), true, false);
|
||||
else if (cursor.pos() < cursor.par()->size()) {
|
||||
else if (!at_end) {
|
||||
setCursor(cursor.par(), cursor.pos() + 1, true, false);
|
||||
if (!internal &&
|
||||
isBoundary(bv()->buffer(), &*cursor.par(), cursor.pos()))
|
||||
|
Loading…
Reference in New Issue
Block a user