Fake boots checkbox/argument

This commit is contained in:
aerinon
2021-07-07 16:23:16 -07:00
parent fb22c88ace
commit ffcc78f95c
11 changed files with 22 additions and 5 deletions

View File

@@ -58,6 +58,7 @@ SETTINGSTOPROCESS = {
"hints": "hints",
"retro": "retro",
"shopsanity": "shopsanity",
"fakeboots": "fakeboots",
"worldstate": "mode",
"logiclevel": "logic",
"goal": "goal",

View File

@@ -1,4 +1,4 @@
from tkinter import ttk, Frame, E, W, LEFT, RIGHT
from tkinter import ttk, Frame, E, W, LEFT, RIGHT, Label
import source.gui.widgets as widgets
import json
import os
@@ -17,6 +17,9 @@ def item_page(parent):
self.frames["checkboxes"] = Frame(self)
self.frames["checkboxes"].pack(anchor=W)
various_options = Label(self.frames["checkboxes"], text="")
various_options.pack(side=LEFT)
self.frames["leftItemFrame"] = Frame(self)
self.frames["rightItemFrame"] = Frame(self)
self.frames["leftItemFrame"].pack(side=LEFT)
@@ -34,7 +37,7 @@ def item_page(parent):
self.widgets[key] = dictWidgets[key]
packAttrs = {"anchor":E}
if self.widgets[key].type == "checkbox":
packAttrs["anchor"] = W
packAttrs["side"] = LEFT
self.widgets[key].pack(packAttrs)
return self