Converted to MDI

This commit is contained in:
Jamie Cash
2021-05-28 17:34:28 +01:00
parent c977e3ac1c
commit 029e86d358
7 changed files with 708 additions and 711 deletions
+2 -2
View File
@@ -3,7 +3,7 @@ Application to monitor previously correlated symbol pairs for correlation diverg
"""
import definitions
import logging.config
from mt5_correlation.gui import MonitorFrame
from mt5_correlation.gui import CorrelationMDIFrame
import wxconfig as cfg
import wx
import wx.lib.mixins.inspection as wit
@@ -32,6 +32,6 @@ if __name__ == "__main__":
app = wx.App(False)
# Start the app
frame = MonitorFrame()
frame = CorrelationMDIFrame()
frame.Show()
app.MainLoop()