From 847c83f65761426c059582a3d3d56701153731f1 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Sat, 2 Apr 2022 19:11:00 -0600 Subject: [PATCH] Fix for typo (thanks @alphascorp) Ref: https://github.com/dortania/OpenCore-Legacy-Patcher/pull/964 Author: @alphascorp --- gui/gui_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/gui_main.py b/gui/gui_main.py index 9d3275492..7d2e2e1bd 100644 --- a/gui/gui_main.py +++ b/gui/gui_main.py @@ -274,7 +274,7 @@ class wx_python_gui: self.post_install.Bind(wx.EVT_BUTTON, self.root_patch_menu) self.post_install.Centre(wx.HORIZONTAL) if self.constants.detected_os in [os_data.os_data.mojave, os_data.os_data.catalina] and self.constants.moj_cat_accel == False: - self.post_install.SetToolTip(wx.ToolTip("""Graphics Acceleration fro Mojave and Catalina is currently experimental. \nIf you require this feature, enable '10.14/15 Accel' in Settings.""")) + self.post_install.SetToolTip(wx.ToolTip("""Graphics Acceleration for Mojave and Catalina is currently experimental. \nIf you require this feature, enable '10.14/15 Accel' in Settings.""")) self.post_install.Disable() elif self.constants.detected_os < os_data.os_data.mojave: self.post_install.SetToolTip(wx.ToolTip("""Root Patching is only available for Mojave and newer."""))