diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2021-11-23 21:41:31 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2021-11-23 21:41:31 +0800 |
commit | ce112c714b740c0e9e958f2016091bd3f01d7ba6 (patch) | |
tree | bb6e0142073cc1f378b7ae98249f2f17187583ac /features/soopyGui/index.js | |
parent | 28193e6ed424acd2fcd2a47f1d5e4be53b23e63f (diff) | |
download | SoopyV2-ce112c714b740c0e9e958f2016091bd3f01d7ba6.tar.gz SoopyV2-ce112c714b740c0e9e958f2016091bd3f01d7ba6.tar.bz2 SoopyV2-ce112c714b740c0e9e958f2016091bd3f01d7ba6.zip |
Add onboarding menu
Diffstat (limited to 'features/soopyGui/index.js')
-rw-r--r-- | features/soopyGui/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/soopyGui/index.js b/features/soopyGui/index.js index aa4f691..904176a 100644 --- a/features/soopyGui/index.js +++ b/features/soopyGui/index.js @@ -98,7 +98,7 @@ class SoopyGui extends Feature { this.buttonListElm.children = [] this.pages.forEach((p, i)=>{ - let settingsButton = new ButtonWithArrow().setText("§0" + p.name).setLocation(0, 0.25*i, 1, 0.2) + let settingsButton = new ButtonWithArrow().setText("§0" + p.name).setLocation(0, 0.225*i, 1, 0.2) settingsButton.addEvent(new SoopyMouseClickEvent().setHandler(()=>{this.clickedOpen(p)})) this.buttonListElm.addChild(settingsButton) }) |