We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents afc3910 + 0e6611b commit f928c7eCopy full SHA for f928c7e
1 file changed
src/browser/services/SelectionService.ts
@@ -667,8 +667,8 @@ export class SelectionService extends Disposable implements ISelectionService {
667
668
this._removeMouseDownListeners();
669
670
- if (this.selectionText.length <= 1 && timeElapsed < ALT_CLICK_MOVE_CURSOR_TIME) {
671
- if (event.altKey && this._bufferService.buffer.ybase === this._bufferService.buffer.ydisp) {
+ if (this.selectionText.length <= 1 && timeElapsed < ALT_CLICK_MOVE_CURSOR_TIME && event.altKey) {
+ if (this._bufferService.buffer.ybase === this._bufferService.buffer.ydisp) {
672
const coordinates = this._mouseService.getCoords(
673
event,
674
this._element,
0 commit comments