summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2022-09-20 14:53:19 +0200
committerHugo Locurcio <hugo.locurcio@hugo.pro>2022-09-20 14:53:19 +0200
commit375ea5558a48e4a37e21ce085c0449f453e1d555 (patch)
treea959161bc2542c182be720566dc1b7716a38a914
parent34e28f2fb5fdc4fde65dc2e0c680cab26a6c86e5 (diff)
Fix error string referring to invalid metadata name in Movie Maker dialog
-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;
}
}