From c68e4e8cbe4ac1ff0e52fa9f8f652c82d8cba9b2 Mon Sep 17 00:00:00 2001 From: Paulb23 Date: Wed, 22 Jun 2016 17:39:02 +0100 Subject: [PATCH] Fixed save as not working with scripts --- tools/editor/plugins/script_editor_plugin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/editor/plugins/script_editor_plugin.cpp b/tools/editor/plugins/script_editor_plugin.cpp index 7ecd2951d45..10e4fc8475d 100644 --- a/tools/editor/plugins/script_editor_plugin.cpp +++ b/tools/editor/plugins/script_editor_plugin.cpp @@ -1138,6 +1138,7 @@ void ScriptEditor::_menu_option(int p_option) { if (trim_trailing_whitespace_on_save) { _trim_trailing_whitespace(current->get_text_edit()); } + editor->push_item(current->get_edited_script()->cast_to()); editor->save_resource_as( current->get_edited_script() ); } break;