From e17acc96d1c9a5451f073f2977a43c8d20278166 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Sat, 2 Apr 2022 19:09:41 -0600 Subject: [PATCH] Fix Partially typo (thanks @jed2191) Ref: https://github.com/dortania/OpenCore-Legacy-Patcher/pull/969 Author: @jed2191 --- gui/gui_main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/gui_main.py b/gui/gui_main.py index bc5b1351f..9d3275492 100644 --- a/gui/gui_main.py +++ b/gui/gui_main.py @@ -2025,7 +2025,7 @@ class wx_python_gui: if fu_choice == "Enabled": self.constants.fu_status = True self.constants.fu_arguments = None - elif fu_choice == "Paritally enabled (No AirPlay/SideCar)": + elif fu_choice == "Partially enabled (No AirPlay/SideCar)": self.constants.fu_status = True self.constants.fu_arguments = " -disable_sidecar_mac" else: @@ -2368,7 +2368,7 @@ OpenCore Legacy Patcher by default knows the most ideal # Dropdown: Set Feature Unlock status self.feature_unlock_dropdown = wx.Choice(self.frame) - for entry in ["Enabled", "Paritally enabled (No AirPlay/SideCar)", "Disabled"]: + for entry in ["Enabled", "Partially enabled (No AirPlay/SideCar)", "Disabled"]: self.feature_unlock_dropdown.Append(entry) self.feature_unlock_dropdown.SetPosition(wx.Point(0, self.feature_unlock_label.GetPosition().y + self.feature_unlock_label.GetSize().height + 5)) if self.constants.fu_status is True: