Move field border radius into a constant (#3434)

* Move field border radius into a constant

* Drop const.
This commit is contained in:
Sam El-Husseini
2019-11-13 17:22:21 -08:00
committed by GitHub
parent f9dcb60f82
commit 09f6b792a6

View File

@@ -326,8 +326,8 @@ Blockly.Field.prototype.createBorderRect_ = function() {
this.borderRect_ = /** @type {!SVGRectElement} **/
(Blockly.utils.dom.createSvgElement('rect',
{
'rx': 4,
'ry': 4,
'rx': this.constants_.FIELD_BORDER_RECT_RADIUS,
'ry': this.constants_.FIELD_BORDER_RECT_RADIUS,
'x': 0,
'y': 0,
'height': this.size_.height,