diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2023-02-10 00:24:52 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2023-02-10 16:55:50 +0800 |
commit | 26581ca574a5299762ae8522e1545f640ecade2b (patch) | |
tree | d9a4bd26b3ad35d8e9799805d4190bad435df116 /scene/animation/animation_player.cpp | |
parent | 929ee61170ec4d431d6d2cfeddccdec2a59a11b7 (diff) |
Add some missing translatable editor strings
Diffstat (limited to 'scene/animation/animation_player.cpp')
-rw-r--r-- | scene/animation/animation_player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/animation/animation_player.cpp b/scene/animation/animation_player.cpp index ad0c19b1e6..fc3a3d306f 100644 --- a/scene/animation/animation_player.cpp +++ b/scene/animation/animation_player.cpp @@ -199,7 +199,7 @@ void AnimationPlayer::_validate_property(PropertyInfo &p_property) const { void AnimationPlayer::_get_property_list(List<PropertyInfo> *p_list) const { List<PropertyInfo> anim_names; - anim_names.push_back(PropertyInfo(Variant::DICTIONARY, "libraries")); + anim_names.push_back(PropertyInfo(Variant::DICTIONARY, PNAME("libraries"))); for (const KeyValue<StringName, AnimationData> &E : animation_set) { if (E.value.next != StringName()) { |