mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 02:48:30 -05:00
Merge VS Code 1.31.1 (#4283)
This commit is contained in:
@@ -254,9 +254,9 @@ export class CursorCollection {
|
||||
cursors[winnerIndex].setState(this.context, resultingState.modelState, resultingState.viewState);
|
||||
}
|
||||
|
||||
for (let j = 0; j < sortedCursors.length; j++) {
|
||||
if (sortedCursors[j].index > looserIndex) {
|
||||
sortedCursors[j].index--;
|
||||
for (const sortedCursor of sortedCursors) {
|
||||
if (sortedCursor.index > looserIndex) {
|
||||
sortedCursor.index--;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user