Don't execute move to cell when the user has scrolled up

Fixes #2401
This commit is contained in:
Daniel Imms
2019-09-06 09:27:20 -07:00
parent 62215ac493
commit 81c5fd4988
+1 -1
View File
@@ -664,7 +664,7 @@ export class SelectionService implements ISelectionService {
this._removeMouseDownListeners();
if (this.selectionText.length <= 1 && timeElapsed < ALT_CLICK_MOVE_CURSOR_TIME) {
if (event.altKey) {
if (event.altKey && this._bufferService.buffer.ybase === this._bufferService.buffer.ydisp) {
const coordinates = this._mouseService.getCoords(
event,
this._element,