Fix scroll bar logic

This commit is contained in:
Logan Ramos
2019-07-03 08:37:59 -07:00
parent d691327cb5
commit 2a405d5f97
+1 -1
View File
@@ -506,7 +506,7 @@ export class SelectionService implements ISelectionService {
}
// Return early if the click event is not in the buffer (eg. in scroll bar)
if (line.length >= this._model.selectionStart[0]) {
if (line.length === this._model.selectionStart[0]) {
return;
}