From: André Pönitz Date: Mon, 24 Nov 2003 16:36:59 +0000 (+0000) Subject: some bool variables to make if() simpler X-Git-Tag: 1.6.10~15758 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=cbe6dd74b3ce9009698919925a85f4183ac750e2;p=features.git some bool variables to make if() simpler git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8126 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/rowpainter.C b/src/rowpainter.C index 4778b29a29..efdc60a6ee 100644 --- a/src/rowpainter.C +++ b/src/rowpainter.C @@ -405,11 +405,14 @@ void RowPainter::paintSelection() int const row_y = pit_->y + row_.y_offset(); + bool const sel_starts_here = startpit == pit_ && startrow == rit_; + bool const sel_ends_here = endpit == pit_ && endrow == rit_; + bool const sel_on_one_row = sel_starts_here && sel_ends_here; + if (text_.bidi.same_direction()) { int x; int w; - if ((startpit == pit_ && startrow == rit_) && - (endpit == pit_ && endrow == rit_)) { + if (sel_on_one_row) { if (startx < endx) { x = int(xo_) + startx; w = endx - startx; @@ -418,11 +421,11 @@ void RowPainter::paintSelection() w = startx - endx; } pain_.fillRectangle(x, yo_, w, h, LColor::selection); - } else if (startpit == pit_ && startrow == rit_) { + } else if (sel_starts_here) { int const x = is_rtl ? int(xo_) : int(xo_ + startx); int const w = is_rtl ? startx : (width_ - startx); pain_.fillRectangle(x, yo_, w, h, LColor::selection); - } else if (endpit == pit_ && endrow == rit_) { + } else if (sel_ends_here) { int const x = is_rtl ? int(xo_ + endx) : int(xo_); int const w = is_rtl ? (width_ - endx) : endx; pain_.fillRectangle(x, yo_, w, h, LColor::selection);