This commit is contained in:
Jazzzny
2023-10-07 17:27:03 -04:00
parent f4a8cbbea9
commit b5a876ffd7
3 changed files with 19 additions and 18 deletions

View File

@@ -277,16 +277,16 @@ class SettingsFrame(wx.Frame):
"wrap_around 2": {
"type": "wrap_around",
},
"APFS Trim": {
"OpenCore Vaulting": {
"type": "checkbox",
"value": self.constants.apfs_trim_timeout,
"variable": "apfs_trim_timeout",
"value": self.constants.vault,
"variable": "vault",
"description": [
"Recommended for all users, however faulty",
"SSDs may benefit from disabling this.",
"Digitally sign OpenCore to prevent",
"tampering or corruption."
],
},
"Show OpenCore Boot Picker": {
"type": "checkbox",
"value": self.constants.showpicker,
@@ -443,6 +443,16 @@ class SettingsFrame(wx.Frame):
],
"condition": not bool(self.constants.computer.third_party_sata_ssd is False and not self.constants.custom_model)
},
"APFS Trim": {
"type": "checkbox",
"value": self.constants.apfs_trim_timeout,
"variable": "apfs_trim_timeout",
"description": [
"Recommended for all users, however faulty",
"SSDs may benefit from disabling this.",
],
},
},
"Advanced": {
"Miscellaneous": {
@@ -836,15 +846,7 @@ class SettingsFrame(wx.Frame):
"Export constants.py values to a txt file.",
],
},
"OpenCore Vaulting": {
"type": "checkbox",
"value": self.constants.vault,
"variable": "vault",
"description": [
"Untick to disable vaulting for",
"testing purposes."
],
},
"Developer Root Volume Patching": {
"type": "title",
},