X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FCursor.cpp;h=7232e88e0f14f0a2837a90d8d9ad13d760c8d5bd;hb=24fe5b08c0e1dfb739738acb6fc995da7315d35f;hp=a51c98b8b4c6c2d8c945cb5b7507790ac0e7b97a;hpb=7bd33462a0de8e84cd0e6f7fa0213605f403087d;p=lyx.git diff --git a/src/Cursor.cpp b/src/Cursor.cpp index a51c98b8b4..7232e88e0f 100644 --- a/src/Cursor.cpp +++ b/src/Cursor.cpp @@ -507,10 +507,11 @@ bool Cursor::posVisRight(bool skip_inset) new_cur.pos() = right_pos + 1; // set the boundary to true in two situations: if ( - // 1. if new_pos is now lastpos (which means that we're moving - // right to the end of an LTR chunk which is at the end of an - // RTL paragraph); - new_cur.pos() == lastpos() + // 1. if new_pos is now lastpos, and we're in an RTL paragraph + // (this means that we're moving right to the end of an LTR chunk + // which is at the end of an RTL paragraph); + (new_cur.pos() == lastpos() + && paragraph().isRTL(buffer().params())) // 2. if the position *after* right_pos is RTL (we want to be // *after* right_pos, not before right_pos + 1!) || paragraph().getFontSettings(bv().buffer().params(), @@ -598,10 +599,11 @@ bool Cursor::posVisLeft(bool skip_inset) new_cur.pos() = left_pos + 1; // set the boundary to true in two situations: if ( - // 1. if new_pos is now lastpos (which means that we're moving left - // to the end of an RTL chunk which is at the end of an LTR - // paragraph); - new_cur.pos() == lastpos() + // 1. if new_pos is now lastpos and we're in an LTR paragraph + // (this means that we're moving left to the end of an RTL chunk + // which is at the end of an LTR paragraph); + (new_cur.pos() == lastpos() + && !paragraph().isRTL(buffer().params())) // 2. if the position *after* left_pos is not RTL (we want to be // *after* left_pos, not before left_pos + 1!) || !paragraph().getFontSettings(bv().buffer().params(), @@ -1242,10 +1244,10 @@ void Cursor::insert(Inset * inset0) } -void Cursor::niceInsert(docstring const & t) +void Cursor::niceInsert(docstring const & t, Parse::flags f) { MathData ar; - asArray(t, ar); + asArray(t, ar, f); if (ar.size() == 1) niceInsert(ar[0]); else