Skip to content

Commit 5fea9b4

Browse files
authored
Setting default enablement state to false for the experiment (microsoft#203324)
setting default enablement state to false for the experiment
1 parent 97b8727 commit 5fea9b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/editor/common/config/editorOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2810,7 +2810,7 @@ export type EditorStickyScrollOptions = Readonly<Required<IEditorStickyScrollOpt
28102810
class EditorStickyScroll extends BaseEditorOption<EditorOption.stickyScroll, IEditorStickyScrollOptions, EditorStickyScrollOptions> {
28112811

28122812
constructor() {
2813-
const defaults: EditorStickyScrollOptions = { enabled: true, maxLineCount: 5, defaultModel: 'outlineModel', scrollWithEditor: true };
2813+
const defaults: EditorStickyScrollOptions = { enabled: false, maxLineCount: 5, defaultModel: 'outlineModel', scrollWithEditor: true };
28142814
super(
28152815
EditorOption.stickyScroll, 'stickyScroll', defaults,
28162816
{

0 commit comments

Comments
 (0)