From 00616360a35579a40e68b63dd4d938336b136fae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Michaud?= Date: Wed, 3 Oct 2018 12:03:03 -0400 Subject: [PATCH] Fix #22588: missing preset save after removing a export preset. --- editor/editor_export.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/editor/editor_export.cpp b/editor/editor_export.cpp index 455c889224d..1a6188862f0 100644 --- a/editor/editor_export.cpp +++ b/editor/editor_export.cpp @@ -1097,6 +1097,7 @@ Ref EditorExport::get_export_preset(int p_idx) { void EditorExport::remove_export_preset(int p_idx) { export_presets.remove(p_idx); + save_presets(); } void EditorExport::add_export_plugin(const Ref &p_plugin) {