From a6f0341fe4f9d30a427c97698f8f4e7e572d98d3 Mon Sep 17 00:00:00 2001 From: Sebastian Kupke Date: Thu, 1 Aug 2019 09:44:03 +0200 Subject: [PATCH] Added huge button group example. --- lib/pixi/buttongroup.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pixi/buttongroup.html b/lib/pixi/buttongroup.html index eece850..233061b 100644 --- a/lib/pixi/buttongroup.html +++ b/lib/pixi/buttongroup.html @@ -269,7 +269,7 @@ const buttonGroup15 = new ButtonGroup({ }) const buttons16 = [] -for (let i = 1; i < 51; i++) { +for (let i = 1; i < 101; i++) { buttons16.push({label: `Button ${i}`, stroke: Math.floor(Math.random() * 16777215), strokeWidth: 3, radius: 16}) } const buttonGroup16 = new ButtonGroup({ @@ -277,7 +277,7 @@ const buttonGroup16 = new ButtonGroup({ y: 1040, buttons: buttons16, stackPadding: 3, - maxWidth: 700, + maxWidth: 900, app })