Skip to content

Commit

Permalink
Cleanup a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
kubilus1 committed Sep 28, 2023
1 parent 94acdda commit 7637edd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
6 changes: 0 additions & 6 deletions autoortho/autoortho.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,10 +312,6 @@ def main():
if args.configure or (CFG.general.showconfig and not args.headless):
# Show cfgui at start
run_headless = False
#cfgui = config_ui.ConfigUI(CFG)
## Block until 'Run' button hit unless headless
#cfgui.setup(headless = args.headless)
#cfgui.verify()
else:
# Don't show cfgui
run_headless = True
Expand Down Expand Up @@ -356,10 +352,8 @@ def main():
else:
log.info("Running CFG UI")
cfgui = AOMountUI(CFG)
# Block until 'Run' button hit unless headless
cfgui.setup()


stats.stop()
flighttrack.ft.stop()

Expand Down
3 changes: 0 additions & 3 deletions autoortho/config_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,11 @@ class ConfigUI(object):
window = None
running = False
ready = None
run_ao = None
splash_w = None

def __init__(self, cfg):
self.ready = threading.Event()
self.ready.clear()
self.run_ao = threading.Event()
self.run_ao.clear()

self.start_splash()

Expand Down

0 comments on commit 7637edd

Please sign in to comment.