Re: r20014 - in /lyx-devel/trunk/src: Cursor.cpp FontIterator...

2007-09-03 Thread Abdelrazak Younes
Alfredo Braunstein wrote: [EMAIL PROTECTED] wrote: +bool TextMetrics::isRTL(CursorSlice const & sl, bool boundary) const +{ + if (!lyxrc.rtl_support && !sl.text()) + return false; I know that you just copied it, but this should be || right? Right... I think. Abdel.

Re: r20014 - in /lyx-devel/trunk/src: Cursor.cpp FontIterator...

2007-09-02 Thread Alfredo Braunstein
[EMAIL PROTECTED] wrote: > +bool TextMetrics::isRTL(CursorSlice const & sl, bool boundary) const > +{ > +   if (!lyxrc.rtl_support && !sl.text()) > +   return false; > I know that you just copied it, but this should be || right? A/