Move MW to Bottom

This commit is contained in:
Mike A. Trethewey
2020-03-10 21:31:42 -07:00
parent 3e9880a6db
commit 0c1dc36335
5 changed files with 15 additions and 14 deletions

View File

@@ -7,6 +7,7 @@ from CLI import parse_arguments
from Main import main
from Utils import local_path, output_path, open_file
import source.classes.constants as CONST
from source.gui.randomize.multiworld import multiworld_page
import source.gui.widgets as widgets
from source.classes.Empty import Empty
@@ -18,6 +19,10 @@ def bottom_frame(self, parent, args=None):
# Bottom Frame options
self.widgets = {}
mw,_ = multiworld_page(self, parent.settings)
mw.pack(fill=X, expand=True)
self.widgets = mw.widgets
# Seed input
# widget ID
widget = "seed"