mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-09 11:21:19 +01:00
Enable Monaco automaticLayout (#21515)
Enable [`automaticLayout`](https://microsoft.github.io/monaco-editor/api/interfaces/monaco.editor.IDiffEditorOptions.html#automaticLayout) for monaco so it can reflow itself. Fixes: https://github.com/go-gitea/gitea/issues/21508
This commit is contained in:
parent
fbcf1ab477
commit
fe442dba4b
1 changed files with 1 additions and 4 deletions
|
@ -17,6 +17,7 @@ const baseOptions = {
|
|||
rulers: false,
|
||||
scrollbar: {horizontalScrollbarSize: 6, verticalScrollbarSize: 6},
|
||||
scrollBeyondLastLine: false,
|
||||
automaticLayout: true,
|
||||
};
|
||||
|
||||
function getEditorconfig(input) {
|
||||
|
@ -111,10 +112,6 @@ export async function createMonaco(textarea, filename, editorOpts) {
|
|||
textarea.dispatchEvent(new Event('change')); // seems to be needed for jquery-are-you-sure
|
||||
});
|
||||
|
||||
window.addEventListener('resize', () => {
|
||||
editor.layout();
|
||||
});
|
||||
|
||||
exportEditor(editor);
|
||||
|
||||
const loading = document.querySelector('.editor-loading');
|
||||
|
|
Loading…
Reference in a new issue