summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHayden <500153494@fvtc.edu>2019-05-15 12:36:26 -0500
committerHayden <500153494@fvtc.edu>2019-05-16 10:44:05 -0500
commitc9b9ba26db700eb794793ffe5188edb8657548de (patch)
treeb30a6cdf809a7533d367f6212606019f208bfd48
parente20fb10d35fad895f1150232f99448e4812643ae (diff)
Directories can now be dragged into the script editor
-rw-r--r--editor/plugins/script_text_editor.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/editor/plugins/script_text_editor.cpp b/editor/plugins/script_text_editor.cpp
index d40e67cc8c..eaba48fa05 100644
--- a/editor/plugins/script_text_editor.cpp
+++ b/editor/plugins/script_text_editor.cpp
@@ -1266,7 +1266,8 @@ bool ScriptTextEditor::can_drop_data_fw(const Point2 &p_point, const Variant &p_
Dictionary d = p_data;
if (d.has("type") && (String(d["type"]) == "resource" ||
String(d["type"]) == "files" ||
- String(d["type"]) == "nodes")) {
+ String(d["type"]) == "nodes" ||
+ String(d["type"]) == "files_and_dirs")) {
return true;
}
@@ -1328,7 +1329,7 @@ void ScriptTextEditor::drop_data_fw(const Point2 &p_point, const Variant &p_data
te->insert_text_at_cursor(res->get_path());
}
- if (d.has("type") && String(d["type"]) == "files") {
+ if (d.has("type") && (String(d["type"]) == "files" || String(d["type"]) == "files_and_dirs")) {
Array files = d["files"];