diff --git a/test-app/src/widgets/Button.js b/test-app/src/widgets/Button.js index 8d4a94fc..af02eec2 100644 --- a/test-app/src/widgets/Button.js +++ b/test-app/src/widgets/Button.js @@ -100,7 +100,8 @@ export default class Button extends createjs.Container { } _addText() { - this.text = new createjs.Text(this.value, 'bold 24px Arial', '#000'); + const labelText = `Click: ${this.value} ✓`; + this.text = new createjs.Text(labelText, 'bold 24px Helvetica', '#0066CC'); this.text.textAlign = 'center'; this.text.textBaseline = 'middle'; this.text.x = this.width / 2;