add ring button to debug menu

This commit is contained in:
zombieFox 2021-09-22 08:22:14 +01:00
parent be673e27a4
commit 50fc45b4fd
1 changed files with 3 additions and 0 deletions

View File

@ -235,6 +235,8 @@ debugSetting.button = (parent) => {
debugSetting.control.button.line = new Button({ text: 'Line button', size: 'medium', style: ['line'] });
debugSetting.control.button.ring = new Button({ text: 'Ring button', size: 'medium', style: ['ring'] });
debugSetting.control.button.link = new Button({ text: 'Link button', size: 'medium', style: ['link'] });
parent.appendChild(
@ -244,6 +246,7 @@ debugSetting.button = (parent) => {
debugSetting.control.button.large.wrap(),
debugSetting.control.button.ring.wrap(),
debugSetting.control.button.line.wrap(),
debugSetting.control.button.ring.wrap(),
debugSetting.control.button.link.wrap(),
])
);