We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ada0f4c commit fc86646Copy full SHA for fc86646
arduino-ide-extension/src/browser/theia/editor/editor-manager.ts
@@ -17,9 +17,7 @@ export class EditorManager extends TheiaEditorManager {
17
const { editor } = widget;
18
if (editor instanceof MonacoEditor) {
19
const codeEditor = editor.getControl();
20
- const lineNumbersMinChars = 2;
21
- const overviewRulerLanes = 0;
22
- codeEditor.updateOptions({ readOnly, lineNumbersMinChars, overviewRulerLanes });
+ codeEditor.updateOptions({ readOnly });
23
}
24
25
return widget;
0 commit comments