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 6a9ed01 commit 31d933bCopy full SHA for 31d933b
core/field.js
@@ -296,11 +296,11 @@ Blockly.Field.prototype.updateEditable = function() {
296
if (this.sourceBlock_.isEditable()) {
297
Blockly.utils.addClass(group, 'blocklyEditableText');
298
Blockly.utils.removeClass(group, 'blocklyNonEditableText');
299
- this.fieldGroup_.style.cursor = this.CURSOR;
+ this.getClickTarget_().style.cursor = this.CURSOR;
300
} else {
301
Blockly.utils.addClass(group, 'blocklyNonEditableText');
302
Blockly.utils.removeClass(group, 'blocklyEditableText');
303
- this.fieldGroup_.style.cursor = '';
+ this.getClickTarget_().style.cursor = '';
304
}
305
};
306
0 commit comments