aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--language-web/src/main/js/editor/EditorStore.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/language-web/src/main/js/editor/EditorStore.ts b/language-web/src/main/js/editor/EditorStore.ts
index 8b9432dd..705020b9 100644
--- a/language-web/src/main/js/editor/EditorStore.ts
+++ b/language-web/src/main/js/editor/EditorStore.ts
@@ -24,6 +24,8 @@ const codeMirrorGlobalOptions: EditorConfiguration = {
24 mode: `xtext/${xtextLang}`, 24 mode: `xtext/${xtextLang}`,
25 indentUnit: 2, 25 indentUnit: 2,
26 styleActiveLine: true, 26 styleActiveLine: true,
27 screenReaderLabel: 'Model source code',
28 inputStyle: 'contenteditable',
27}; 29};
28 30
29export class EditorStore { 31export class EditorStore {