Fix flickering when dragging below viewport

This commit is contained in:
Daniel Imms
2018-08-06 11:17:28 -07:00
parent 7675be7da3
commit c9ec7aa215
+1 -1
View File
@@ -617,7 +617,7 @@ export class SelectionManager extends EventEmitter implements ISelectionManager
// NOT in column select mode.
if (this._dragScrollAmount > 0) {
if (this._activeSelectionMode !== SelectionMode.COLUMN) {
this._model.selectionEnd[0] = this._terminal.cols - 1;
this._model.selectionEnd[0] = this._terminal.cols;
}
this._model.selectionEnd[1] = Math.min(this._terminal.buffer.ydisp + this._terminal.rows, this._terminal.buffer.lines.length - 1);
} else {