summaryrefslogtreecommitdiff
path: root/scene/2d/parallax_layer.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2022-03-28 21:12:44 +0200
committerGitHub <noreply@github.com>2022-03-28 21:12:44 +0200
commit1ae8b2de38edd3f013226a88490cd3d4f83d2a61 (patch)
treec8dd1ee45b54b81a9d8b33f6cba7cd3ff02ff282 /scene/2d/parallax_layer.cpp
parent0c7a15d777073860603f7f36f0eed731ff745ada (diff)
parent7119d355eb6dfe18df5d6f505c4216791bfdbd92 (diff)
Merge pull request #59636 from akien-mga/string-remove-ttr
Diffstat (limited to 'scene/2d/parallax_layer.cpp')
-rw-r--r--scene/2d/parallax_layer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/2d/parallax_layer.cpp b/scene/2d/parallax_layer.cpp
index 849412a7ae..9e8ab224dc 100644
--- a/scene/2d/parallax_layer.cpp
+++ b/scene/2d/parallax_layer.cpp
@@ -143,7 +143,7 @@ TypedArray<String> ParallaxLayer::get_configuration_warnings() const {
TypedArray<String> warnings = Node::get_configuration_warnings();
if (!Object::cast_to<ParallaxBackground>(get_parent())) {
- warnings.push_back(TTR("ParallaxLayer node only works when set as child of a ParallaxBackground node."));
+ warnings.push_back(RTR("ParallaxLayer node only works when set as child of a ParallaxBackground node."));
}
return warnings;