disable sticky scroll by default in monaco

This commit is contained in:
Evan Simkowitz 2024-09-04 23:05:33 -07:00
parent 325bb2515e
commit 292a9ae1e5
No known key found for this signature in database

View File

@ -62,6 +62,9 @@ function defaultEditorOptions(): MonacoTypes.editor.IEditorOptions {
minimap: {
enabled: true,
},
stickyScroll: {
enabled: false,
},
};
return opts;
}