File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
src/addons/addons/custom-block-shape Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -112,24 +112,24 @@ export default async function ({ addon, console }) {
112
112
BlockSvg . INPUT_SHAPE_HEXAGONAL_WIDTH = 12 * GRID_UNIT * multiplier ;
113
113
BlockSvg . INPUT_SHAPE_ROUND =
114
114
"M " +
115
- 4 * GRID_UNIT +
115
+ 4 * GRID_UNIT * multiplier +
116
116
",0" +
117
117
" h " +
118
- 4 * GRID_UNIT +
118
+ 4 * GRID_UNIT * multiplier +
119
119
" a " +
120
- 4 * GRID_UNIT +
120
+ 4 * GRID_UNIT * multiplier +
121
121
" " +
122
- 4 * GRID_UNIT +
122
+ 4 * GRID_UNIT * multiplier +
123
123
" 0 0 1 0 " +
124
- 8 * GRID_UNIT +
124
+ 8 * GRID_UNIT * multiplier +
125
125
" h " +
126
- - 4 * GRID_UNIT +
126
+ - 4 * GRID_UNIT * multiplier +
127
127
" a " +
128
- 4 * GRID_UNIT +
128
+ 4 * GRID_UNIT * multiplier +
129
129
" " +
130
- 4 * GRID_UNIT +
130
+ 4 * GRID_UNIT * multiplier +
131
131
" 0 0 1 0 -" +
132
- 8 * GRID_UNIT +
132
+ 8 * GRID_UNIT * multiplier +
133
133
" z" ;
134
134
BlockSvg . INPUT_SHAPE_ROUND_WIDTH = 12 * GRID_UNIT * multiplier ;
135
135
BlockSvg . INPUT_SHAPE_HEIGHT = 8 * GRID_UNIT * multiplier ;
You can’t perform that action at this time.
0 commit comments