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 fbd2c0c commit c59cff7Copy full SHA for c59cff7
src/fields/FieldNonEditableText.ts
@@ -24,7 +24,7 @@ import * as Blockly from 'blockly/core';
24
class FieldNonEditableText extends Blockly.FieldTextInput {
25
constructor(value: string) {
26
super(value);
27
- this.CURSOR = '';
+ this.EDITABLE = false; // This field is not editable
28
}
29
30
protected override showEditor_() {
0 commit comments