From ce327e5d9225d19cd758d8cdae3136e47a374ccc Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Fri, 22 Jul 2022 22:27:15 +0800 Subject: + fix back button on latest guimanager --- features/soopyGui/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'features/soopyGui') diff --git a/features/soopyGui/index.js b/features/soopyGui/index.js index 9579194..9f1bb4b 100644 --- a/features/soopyGui/index.js +++ b/features/soopyGui/index.js @@ -121,7 +121,6 @@ class SoopyGui extends Feature { theParent.children = [] this.mainWindowElement.addChild(this.categoryPage) - this.mainWindowElement.addChild(this.backButton) this.activePages = category.pages this.currCategory = category @@ -130,6 +129,8 @@ class SoopyGui extends Feature { this.mainWindowElement.addChild(p) }) + this.mainWindowElement.addChild(this.backButton) + category.onOpen() this.goToPageNum(1, anim) -- cgit