From 1cdc04c9c40dae1bd5bd016958cda5250e10c76f Mon Sep 17 00:00:00 2001 From: Ryan Stein Date: Sat, 8 Sep 2018 22:26:05 -0400 Subject: [PATCH] Check for double-colon on open recent script. --- editor/plugins/script_editor_plugin.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index 70f1789a86c..f90863c7354 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -504,6 +504,13 @@ void ScriptEditor::_open_recent_script(int p_idx) { return; } // if it's a path then its most likely a deleted file not help + } else if (path.find("::") != -1) { + // built-in script + Ref