Ensure that cursor state change is always emitted upon restoring state (#203451)

* Set initial cursor position for
This commit is contained in:
Aleksandr Kondrashov
2024-01-29 09:31:52 +00:00
committed by GitHub
parent 4ed4f62534
commit 16f38b9d1a
@@ -249,7 +249,7 @@ export class DecorationsOverviewRuler extends ViewPart {
}
});
this._cursorPositions = [];
this._cursorPositions = [new Position(1, 1)];
}
public override dispose(): void {