Skip to content

Commit

Permalink
small fix of one sign highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
daddel80 committed Aug 8, 2023
1 parent d5952f8 commit e58c1e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MultiReplacePanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2605,7 +2605,7 @@ void MultiReplace::clearMarksInLine(LRESULT line) {

void MultiReplace::highlightColumnRange(LRESULT start, LRESULT end, SIZE_T column) {
// Skip if end is only one position higher than start
if (end - start <= 1) {
if (end - start < 1) {
return;
}

Expand Down

0 comments on commit e58c1e1

Please sign in to comment.