diff --git a/main/astrodatagui/AstrodataGUI.py b/main/astrodatagui/AstrodataGUI.py index 471cee4..eb2b447 100644 --- a/main/astrodatagui/AstrodataGUI.py +++ b/main/astrodatagui/AstrodataGUI.py @@ -13,6 +13,8 @@ from .CalcAllFlaresThread import CalcAllFlaresThread DEFAULT_DB = "stars.db" +from .FlareSummaryPlotGUI import FlareSummaryPlotGUI + class AstrodataGUI(QtWidgets.QMainWindow): def __init__(self): super(AstrodataGUI, self).__init__() @@ -351,6 +353,8 @@ class AstrodataGUI(QtWidgets.QMainWindow): def btCountAllFlaresClickedDone(self, allFlaresDictList): print(allFlaresDictList) self.calcAllFlaresThread = None + self.AllFlaresWindow = FlareSummaryPlotGUI() + self.AllFlaresWindow.show() def btCountAllFlaresClicked(self): if(self.calcAllFlaresThread is None):