Skip to content
Snippets Groups Projects
Commit 46053aad authored by George Nachman's avatar George Nachman
Browse files

Fix set selection time for selecting whole lines

parent 694ce36b
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -2860,7 +2860,8 @@ NSMutableArray* screens=0;
startY = [self lineNumberWithStartOfWholeLineIncludingLine:y];
endX = width;
endY = [self lineNumberWithEndOfWholeLineIncludingLine:y];
}
}
[self setSelectionTime];
} else {
// triple-click; select line
selectMode = SELECT_LINE;
Loading
Loading
@@ -2877,7 +2878,6 @@ NSMutableArray* screens=0;
// advance start to end
startX = endX;
startY = endY;
[self setSelectionTime];
}
// Set end of selection to current line
endX = 0;
Loading
Loading
@@ -2888,8 +2888,8 @@ NSMutableArray* screens=0;
startX = 0;
endX = width;
startY = endY = y;
[self setSelectionTime];
}
[self setSelectionTime];
}
} else if (clickCount == 4) {
// quad-click: smart selection
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment