GUI: Add help menu

This commit is contained in:
Mykola Grymalyuk
2023-05-07 12:44:30 -06:00
parent 4068bc1661
commit 28cdc3f61b
2 changed files with 73 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ from resources.wx_gui import (
gui_build,
gui_sys_patch,
gui_support,
gui_help,
)
from resources import constants
@@ -98,4 +99,9 @@ class MainMenu(wx.Frame):
pass
def on_help(self, event: wx.Event = None):
pass
gui_help.HelpFrame(
parent=self,
title=self.title,
global_constants=self.constants,
screen_location=self.GetPosition()
)