| 1228 | /*************************************************************************/ |
| 1229 | |
| 1230 | void GodotREEditor::_pck_create_request(const String &p_path) { |
| 1231 | pck_save_files.clear(); |
| 1232 | pck_file = p_path; |
| 1233 | if (key_dialog->get_key().size() > 0) { |
| 1234 | GDRESettings::get_singleton()->set_encryption_key(key_dialog->get_key()); |
| 1235 | } |
| 1236 | |
| 1237 | pck_save_dialog->popup_centered(Size2(600, 400)); |
| 1238 | } |
| 1239 | |
| 1240 | void GodotREEditor::_pck_save_prep() { |
| 1241 | pck_save_file_selection->clear_filters(); |
nothing calls this directly
no test coverage detected