From: Jean-Marc Lasgouttes Date: Thu, 12 Oct 2023 09:09:46 +0000 (+0200) Subject: Use Color_selectionmath as needed for multi-cell selection in math X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=174dc2c8be3c0098e28bf5676819c7ca1c65d74f;p=features.git Use Color_selectionmath as needed for multi-cell selection in math This is complementary to partial selection implemented at 65cb9fa4. --- diff --git a/src/mathed/MathData.cpp b/src/mathed/MathData.cpp index eee53d2f50..24b4d86fb9 100644 --- a/src/mathed/MathData.cpp +++ b/src/mathed/MathData.cpp @@ -239,6 +239,18 @@ bool MathData::addToMathRow(MathRow & mrow, MetricsInfo & mi) const if (s1.idx() == s2.idx() && &inset->cell(s1.idx()) == this) { bspos = s1.pos(); espos = s2.pos(); + } else if (s1.idx() != s2.idx()) { + // search for this math data and check whether it is selected + for (idx_type idx = 0; idx < inset->nargs(); ++idx) { + MathData const & c = inset->cell(idx); + if (&c == this && inset->idxBetween(idx, s1.idx(), s2.idx())) { + // whole cell is selected + bspos = 0; + espos = size(); + // no need to continue searchning + break; + } + } } }