From 3ff6f6823671c04fff3f3030255d61703d0a8b81 Mon Sep 17 00:00:00 2001 From: Jazzzny Date: Fri, 28 Jul 2023 21:14:25 -0400 Subject: [PATCH] Update --- resources/wx_gui/gui_settings.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/resources/wx_gui/gui_settings.py b/resources/wx_gui/gui_settings.py index 18479d581..5f51c22ac 100644 --- a/resources/wx_gui/gui_settings.py +++ b/resources/wx_gui/gui_settings.py @@ -1319,10 +1319,7 @@ Hardware Information: else: from resources.sys_patch.sys_patch import PatchSysVolume #Don't need to pass model as we're bypassing all logic - if PatchSysVolume("",self.constants)._rebuild_kernel_collection() == True: - if PatchSysVolume("",self.constants)._create_new_apfs_snapshot() == True: - wx.MessageDialog(self.parent, "Root Volume saved, please reboot to apply changes", "Success", wx.OK | wx.ICON_INFORMATION).ShowModal() - else: - wx.MessageDialog(self.parent, "Root Volume Bless Failed, check terminal output", "Error", wx.OK | wx.ICON_ERROR).ShowModal() + if PatchSysVolume("",self.constants)._rebuild_root_volume() == True: + wx.MessageDialog(self.parent, "Root Volume saved, please reboot to apply changes", "Success", wx.OK | wx.ICON_INFORMATION).ShowModal() else: - wx.MessageDialog(self.parent, "KC Update Failed, check terminal output", "Error", wx.OK | wx.ICON_ERROR).ShowModal() \ No newline at end of file + wx.MessageDialog(self.parent, "Root Volume update Failed, check terminal output", "Error", wx.OK | wx.ICON_ERROR).ShowModal() \ No newline at end of file