diff options
Diffstat (limited to 'features')
-rw-r--r-- | features/soopyGui/index.js | 3 |
1 files changed, 2 insertions, 1 deletions
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) |