summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-09-20 15:40:00 +0200
committerRémi Verschelde <rverschelde@gmail.com>2022-09-20 15:40:00 +0200
commitf417bf255f3d8e3d58a0f9cb418d7bc4d85634cf (patch)
tree2510a0d44f465282b31787339a179c807c91a972 /editor
parentd8d10c30d0eaa8a4e7e205ed36dd72582f536690 (diff)
parent375ea5558a48e4a37e21ce085c0449f453e1d555 (diff)
Merge pull request #66156 from Calinou/editor-movie-file-fix-error-string
Fix error string referring to invalid metadata name in Movie Maker dialog
Diffstat (limited to 'editor')
-rw-r--r--editor/editor_node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp
index a2f2b6c625..9ac6fd66ef 100644
--- a/editor/editor_node.cpp
+++ b/editor/editor_node.cpp
@@ -2450,7 +2450,7 @@ void EditorNode::_run(bool p_current, const String &p_custom) {
write_movie_file = GLOBAL_GET("editor/movie_writer/movie_file");
}
if (write_movie_file == String()) {
- show_accept(TTR("Movie Maker mode is enabled, but no movie file path has been specified.\nA default movie file path can be specified in the project settings under the 'Editor/Movie Writer' category.\nAlternatively, for running single scenes, a 'movie_path' metadata can be added to the root node,\nspecifying the path to a movie file that will be used when recording that scene."), TTR("OK"));
+ show_accept(TTR("Movie Maker mode is enabled, but no movie file path has been specified.\nA default movie file path can be specified in the project settings under the Editor > Movie Writer category.\nAlternatively, for running single scenes, a `movie_file` string metadata can be added to the root node,\nspecifying the path to a movie file that will be used when recording that scene."), TTR("OK"));
return;
}
}