diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2020-01-08 19:43:55 -0300 |
---|---|---|
committer | Michael Alexsander <michaelalexsander@protonmail.com> | 2020-01-09 13:09:23 -0300 |
commit | 8708d44a507c4888e3143b910ebdcfc5739acc8f (patch) | |
tree | 7743fd53d0e33c89e17b5ab4d213de189edb2dc2 /editor/filesystem_dock.cpp | |
parent | e97e951741c5f1a5865e1b551edb184af6374999 (diff) | |
download | redot-engine-8708d44a507c4888e3143b910ebdcfc5739acc8f.tar.gz |
Add option to disable loading scripts in ScriptCreateDialog
Diffstat (limited to 'editor/filesystem_dock.cpp')
-rw-r--r-- | editor/filesystem_dock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp index f74cadf67e..93e9cc58fb 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -1761,7 +1761,7 @@ void FileSystemDock::_file_option(int p_option, const Vector<String> &p_selected if (!fpath.ends_with("/")) { fpath = fpath.get_base_dir(); } - make_script_dialog->config("Node", fpath.plus_file("new_script.gd"), false); + make_script_dialog->config("Node", fpath.plus_file("new_script.gd"), false, false); make_script_dialog->popup_centered(); } break; |