diff options
| author | Michael Alexsander Silva Dias <michaelalexsander@protonmail.com> | 2018-12-17 21:03:25 -0200 |
|---|---|---|
| committer | Michael Alexsander Silva Dias <michaelalexsander@protonmail.com> | 2018-12-17 21:03:58 -0200 |
| commit | b86b497cec8f0b3fa348f8c9b7bcce7d20232292 (patch) | |
| tree | 580fb7ff37423c103e8deffff6bd8cf9fcd6f1e9 /editor/filesystem_dock.cpp | |
| parent | 0cff752be1f6c6a61ad72bcdf340c06d08277081 (diff) | |
| download | redot-engine-b86b497cec8f0b3fa348f8c9b7bcce7d20232292.tar.gz | |
General fixes for the AnimationTree editor
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 b2368fff6b..4cc0b67b8d 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -1180,7 +1180,7 @@ void FileSystemDock::_make_dir_confirm() { String dir_name = make_dir_dialog_text->get_text().strip_edges(); if (dir_name.length() == 0) { - EditorNode::get_singleton()->show_warning(TTR("No name provided")); + EditorNode::get_singleton()->show_warning(TTR("No name provided.")); return; } else if (dir_name.find("/") != -1 || dir_name.find("\\") != -1 || dir_name.find(":") != -1 || dir_name.find("*") != -1 || dir_name.find("|") != -1 || dir_name.find(">") != -1 || dir_name.ends_with(".") || dir_name.ends_with(" ")) { |
