gui.py: Fix typo

This commit is contained in:
Mykola Grymalyuk
2022-02-09 17:45:01 -07:00
parent 8b1a46d8c4
commit d5330555fc
2 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ For developers wishing to validate mainline changes, you may use these nightly l
## Getting Started ## Getting Started
To start, ensure you have python 3.6 or newer installed. Additionally ensure that they were downloaded from the offical source, [python.org](https://www.python.org/downloads/macos/). To start, ensure you have python 3.6 or newer installed. Additionally ensure that they were downloaded from the Official source, [python.org](https://www.python.org/downloads/macos/).
* Python installations either preinstalled or provided with Xcode/Xcode Tools are unsupported due to reliablility issues * Python installations either preinstalled or provided with Xcode/Xcode Tools are unsupported due to reliablility issues
+7 -7
View File
@@ -340,8 +340,8 @@ class wx_python_gui:
# Define Menu # Define Menu
# Header: Get help with OpenCore Legacy Patcher # Header: Get help with OpenCore Legacy Patcher
# Subheader: Following resources are available: # Subheader: Following resources are available:
# Button: Offical Guide # Button: Official Guide
# Button: Offical Discord Server # Button: Official Discord Server
self.frame.DestroyChildren() self.frame.DestroyChildren()
@@ -362,8 +362,8 @@ class wx_python_gui:
self.subheader.Centre(wx.HORIZONTAL) self.subheader.Centre(wx.HORIZONTAL)
# Offical Guide # Official Guide
self.guide = wx.Button(self.frame, label="Offical Guide", size=(200,30)) self.guide = wx.Button(self.frame, label="Official Guide", size=(200,30))
self.guide.SetPosition( self.guide.SetPosition(
wx.Point( wx.Point(
self.subheader.GetPosition().x, self.subheader.GetPosition().x,
@@ -374,8 +374,8 @@ class wx_python_gui:
self.guide.Bind(wx.EVT_BUTTON, lambda event: webbrowser.open(self.constants.guide_link)) self.guide.Bind(wx.EVT_BUTTON, lambda event: webbrowser.open(self.constants.guide_link))
self.guide.Centre(wx.HORIZONTAL) self.guide.Centre(wx.HORIZONTAL)
# Offical Discord Server # Official Discord Server
self.discord = wx.Button(self.frame, label="Offical Discord Server", size=(200,30)) self.discord = wx.Button(self.frame, label="Official Discord Server", size=(200,30))
self.discord.SetPosition( self.discord.SetPosition(
wx.Point( wx.Point(
self.guide.GetPosition().x, self.guide.GetPosition().x,
@@ -386,7 +386,7 @@ class wx_python_gui:
self.discord.Centre(wx.HORIZONTAL) self.discord.Centre(wx.HORIZONTAL)
# Overclock Button # Overclock Button
self.overclock = wx.Button(self.frame, label="Offical Support Phone", size=(200,30)) self.overclock = wx.Button(self.frame, label="Official Support Phone", size=(200,30))
self.overclock.SetPosition( self.overclock.SetPosition(
wx.Point( wx.Point(
self.discord.GetPosition().x, self.discord.GetPosition().x,