diff --git a/lib/mixins/text.js b/lib/mixins/text.js index 43903abd3..1db975cee 100644 --- a/lib/mixins/text.js +++ b/lib/mixins/text.js @@ -162,6 +162,9 @@ export default { case 'bullet': this.circle(this.x - indent + r, this.y + midLine, r); return this.fill(); + case 'square': + this.rect(this.x - indent, this.y, r*3,r*3); + return this.stroke(); case 'numbered': case 'lettered': var text = label(numbers[i - 1]);