Skip to content

Commit

Permalink
Fix "unextending" range selection from two notes to one from left to …
Browse files Browse the repository at this point in the history
…right

Addresses #26788 (comment)
  • Loading branch information
cbjeukendrup committed Feb 27, 2025
1 parent 6aca98a commit 37e4a81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engraving/dom/select.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1563,7 +1563,7 @@ void Selection::extendRangeSelection(Segment* seg, Segment* segAfter, staff_idx_
if (tick < tickStart()) {
m_startSegment = seg;
activeSegmentIsStart = true;
} else if (etick >= tickEnd()) {
} else if (etick > tickEnd()) {
m_endSegment = segAfter;
} else {
if (m_activeSegment == m_startSegment) {
Expand Down

0 comments on commit 37e4a81

Please sign in to comment.