From 4ba9feb74ff46902bbfd75a33a1bc35901fafe50 Mon Sep 17 00:00:00 2001 From: bbean Date: Fri, 29 Mar 2024 12:15:48 -0600 Subject: [PATCH] register gui as a callback --- opencsp/app/sofast/SofastGUI.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opencsp/app/sofast/SofastGUI.py b/opencsp/app/sofast/SofastGUI.py index 2b1f8b74d..007ce9094 100644 --- a/opencsp/app/sofast/SofastGUI.py +++ b/opencsp/app/sofast/SofastGUI.py @@ -32,7 +32,7 @@ def __init__(self) -> 'SofastGUI': Instantiates GUI in new window """ # Create the service object - self.service = SofastService() + self.service = SofastService(self) # Create tkinter object self.root = tkinter.Tk()