1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

Disable Project Export button after deleting preset

This commit is contained in:
qarmin
2019-04-23 17:49:15 +02:00
parent b0da7b66ce
commit 2fc2d82465

View File

@@ -631,6 +631,7 @@ void ProjectExportDialog::_delete_preset_confirm() {
int idx = presets->get_current();
_edit_preset(-1);
export_button->set_disabled(true);
EditorExport::get_singleton()->remove_export_preset(idx);
_update_presets();
}