From fb65c7672c1c682067c39d7985e18d4fb7c1752a Mon Sep 17 00:00:00 2001 From: silverwind Date: Wed, 19 Oct 2022 20:51:45 +0200 Subject: [PATCH] Enable Monaco automaticLayout Fixes: https://github.com/go-gitea/gitea/issues/21508 --- web_src/js/features/codeeditor.js | 1 + 1 file changed, 1 insertion(+) diff --git a/web_src/js/features/codeeditor.js b/web_src/js/features/codeeditor.js index a22043c9d4825..e848fb53c75fb 100644 --- a/web_src/js/features/codeeditor.js +++ b/web_src/js/features/codeeditor.js @@ -17,6 +17,7 @@ const baseOptions = { rulers: false, scrollbar: {horizontalScrollbarSize: 6, verticalScrollbarSize: 6}, scrollBeyondLastLine: false, + automaticLayout: true, }; function getEditorconfig(input) {