| 443 | } |
| 444 | |
| 445 | void EditorExportPreset::remove_patch(int p_index) { |
| 446 | ERR_FAIL_INDEX(p_index, patches.size()); |
| 447 | patches.remove_at(p_index); |
| 448 | EditorExport::singleton->save_presets(); |
| 449 | } |
| 450 | |
| 451 | void EditorExportPreset::set_patches(const Vector<String> &p_patches) { |
| 452 | patches = p_patches; |
no test coverage detected