Skip to content

Commit

Permalink
Revert "Revert "Group field edits together for undo/redo""
Browse files Browse the repository at this point in the history
This reverts commit 344ebcf.
  • Loading branch information
NeilFraser committed Jul 12, 2021
1 parent 34ed6bc commit b3c94db
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion core/block_drag_surface.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ Blockly.BlockDragSurfaceSvg.prototype.translateSurfaceInternal_ = function() {
this.SVG_.style.display = 'block';

Blockly.utils.dom.setCssTransform(
this.SVG_, 'translate3d(' + x + 'px, ' + y + 'px, 0px)');
this.SVG_, 'translate3d(' + x + 'px, ' + y + 'px, 0)');
};

/**
Expand Down
11 changes: 4 additions & 7 deletions core/field_textinput.js
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,7 @@ Blockly.FieldTextInput.prototype.showInlineEditor_ = function(quietInput) {
* @protected
*/
Blockly.FieldTextInput.prototype.widgetCreate_ = function() {
Blockly.Events.setGroup(true);
var div = Blockly.WidgetDiv.DIV;

Blockly.utils.dom.addClass(this.getClickTarget_(), 'editing');
Expand Down Expand Up @@ -370,8 +371,8 @@ Blockly.FieldTextInput.prototype.widgetCreate_ = function() {
div.style.borderRadius = borderRadius;
div.style.transition = 'box-shadow 0.25s ease 0s';
if (this.getConstants().FIELD_TEXTINPUT_BOX_SHADOW) {
div.style.boxShadow = 'rgba(255, 255, 255, 0.3) 0px 0px 0px ' +
4 * scale + 'px';
div.style.boxShadow = 'rgba(255, 255, 255, 0.3) 0 0 0 ' +
(4 * scale) + 'px';
}
}
htmlInput.style.borderRadius = borderRadius;
Expand Down Expand Up @@ -404,6 +405,7 @@ Blockly.FieldTextInput.prototype.widgetDispose_ = function() {
if (this.onFinishEditing_) {
this.onFinishEditing_(this.value_);
}
Blockly.Events.setGroup(false);

// Actual disposal.
this.unbindInputEvents_();
Expand Down Expand Up @@ -479,15 +481,10 @@ Blockly.FieldTextInput.prototype.onHtmlInputChange_ = function(_e) {
if (text !== this.htmlInput_.oldValue_) {
this.htmlInput_.oldValue_ = text;

// TODO(#2169): Once issue is fixed the setGroup functionality could be
// moved up to the Field setValue method. This would create a
// broader fix for all field types.
Blockly.Events.setGroup(true);
var value = this.getValueFromEditorText_(text);
this.setValue(value);
this.forceRerender();
this.resizeEditor_();
Blockly.Events.setGroup(false);
}
};

Expand Down
2 changes: 1 addition & 1 deletion core/toolbox/category.js
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ Blockly.Css.register([

'.blocklyToolboxDiv[dir="RTL"] .blocklyTreeRow {',
'margin-left: 8px;',
'padding-right: 0px',
'padding-right: 0',
'}',

'.blocklyTreeIcon {',
Expand Down
2 changes: 1 addition & 1 deletion core/utils/dom.js
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ Blockly.utils.dom.measureFontMetrics = function(text, fontSize, fontWeight,

var block = document.createElement('div');
block.style.width = '1px';
block.style.height = '0px';
block.style.height = 0;

var div = document.createElement('div');
div.setAttribute('style', 'position: fixed; top: 0; left: 0; display: flex;');
Expand Down
2 changes: 1 addition & 1 deletion core/workspace_drag_surface_svg.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Blockly.WorkspaceDragSurfaceSvg.prototype.translateSurface = function(x, y) {

this.SVG_.style.display = 'block';
Blockly.utils.dom.setCssTransform(
this.SVG_, 'translate3d(' + fixedX + 'px, ' + fixedY + 'px, 0px)');
this.SVG_, 'translate3d(' + fixedX + 'px, ' + fixedY + 'px, 0)');
};

/**
Expand Down

0 comments on commit b3c94db

Please sign in to comment.