You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'Performance related settings belong here.',
44
+
properties: {
45
+
maxDocumentSizeForValidation: {
46
+
type: 'integer',
47
+
description:
48
+
'The maximum size of the document to validate in bytes. If the document is larger, it will not be validated.',
49
+
default: 1000000,// 1 MB
50
+
minimum: 1000,
51
+
},
52
+
maxDocumentSizeForCursorSynchronization: {
53
+
type: 'integer',
54
+
description:
55
+
'The maximum size of the document to synchronize the cursor position in bytes. If the document is larger, the cursor position will not be synchronized.',
56
+
default: 1000000,// 1 MB
57
+
minimum: 1000,
58
+
},
59
+
maximumShownChildrenInGuiEditor: {
60
+
type: 'integer',
61
+
description:
62
+
'The maximum amount of child nodes to be shown in the GUI editor per parent node. If the document has more children than this value, those will not be shown in the GUI editor, but still exist in the document and can be edited by other panels.',
0 commit comments