Arrayify Adjust

This commit is contained in:
Mike A. Trethewey
2020-02-15 02:02:04 -08:00
parent 62f6642edb
commit afa96412d1
2 changed files with 11 additions and 11 deletions

4
Gui.py
View File

@@ -118,8 +118,8 @@ def guiMain(args=None):
self.randomSprite = BooleanVar()
# Adjuster Controls
self.adjustContent,self.settings = adjust_page(self, self.pages["adjust"], self.settings)
self.adjustContent.pack(side=TOP, fill=BOTH, expand=True)
self.pages["adjust"].content,self.settings = adjust_page(self, self.pages["adjust"], self.settings)
self.pages["adjust"].content.pack(side=TOP, fill=BOTH, expand=True)
# Custom Controls
self.customContent = custom_page(self,self.pages["custom"])