From fb331e1194be35050333b1ec3e2ba0358edd65d4 Mon Sep 17 00:00:00 2001 From: Nilay Majorwar Date: Sun, 13 Feb 2022 19:20:52 +0530 Subject: [PATCH] Partially fix editor overlays getting clipped --- ui/code-editor/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/code-editor/index.tsx b/ui/code-editor/index.tsx index 379613f..71e7007 100644 --- a/ui/code-editor/index.tsx +++ b/ui/code-editor/index.tsx @@ -157,6 +157,7 @@ const CodeEditorComponent = (props: Props, ref: React.Ref) => { // Self-modifying programs may add control characters to the code. // This option ensures such characters are properly displayed. renderControlCharacters: true, + fixedOverflowWidgets: true, }} /> );