diff options
author | Patrick Quist <partouf@gmail.com> | 2024-03-21 05:37:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-21 05:37:40 +0100 |
commit | cd1929bc91022892c168cb800a6f1ce820c9c513 (patch) | |
tree | 589f47cf202a6572a68d53b3e4bcbdecb8f84a59 | |
parent | c34b85c320a4b7babdb26d62f16bb5ccaf82343e (diff) | |
download | compiler-explorer-gh-11032.tar.gz compiler-explorer-gh-11032.zip |
Attempt to disable sticky scroll (#6266)gh-11032
-rw-r--r-- | static/monaco-config.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/static/monaco-config.ts b/static/monaco-config.ts index e2c3d9044..25fb92a11 100644 --- a/static/monaco-config.ts +++ b/static/monaco-config.ts @@ -35,6 +35,9 @@ const DEFAULT_MONACO_CONFIG = { minimap: { maxColumn: 80, }, + stickyScroll: { + enabled: false, + }, folding: true, lineNumbersMinChars: 1, emptySelectionClipboard: true, |