diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-10-20 10:33:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-20 10:33:10 +0200 |
commit | 3971bd41bb274c7f999801d74863746cd4546128 (patch) | |
tree | 8b30fa95a70cd6d79c3ba704ceca60b2a4ab55c5 | |
parent | 62ed861774f169ad950ca13adfb2cc4fa0f5a5db (diff) | |
parent | cf8537ad3713c34c4b2626ab005cc8a653f2e690 (diff) |
Merge pull request #12246 from ISylvox/editable-warning
Adjust Editable_Warning for "This resource was imported...." Alert
[ci skip]
-rw-r--r-- | editor/editor_node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index aca2f59134..4ffac193f2 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -1454,7 +1454,7 @@ void EditorNode::_edit_current() { } } else if (current_res->get_path().is_resource_file()) { if (FileAccess::exists(current_res->get_path() + ".import")) { - editable_warning = TTR("This resource was imported, so it's not editable. Change it's settings in the import panel and re-import."); + editable_warning = TTR("This resource was imported, so it's not editable. Change its settings in the import panel and then re-import."); } } } else if (is_node) { |