diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-05-25 11:44:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-25 11:44:43 +0200 |
commit | 9bc2ba3b648ab4b7ce19825baa3bf506608a343e (patch) | |
tree | a0ffd9214458f83ead082257fd57e34a25520753 /scene/resources/text_line.cpp | |
parent | 9093213c2853b2b00be82c82fa41459d00822f54 (diff) | |
parent | 87f503310ba4f34ffa29f190d803d996ca682612 (diff) |
Merge pull request #48955 from Calinou/editor-tweak-property-hints
Tweak dozens of editor property hints for consistency
Diffstat (limited to 'scene/resources/text_line.cpp')
-rw-r--r-- | scene/resources/text_line.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/text_line.cpp b/scene/resources/text_line.cpp index 925867a1f2..f1eff6e84f 100644 --- a/scene/resources/text_line.cpp +++ b/scene/resources/text_line.cpp @@ -74,7 +74,7 @@ void TextLine::_bind_methods() { ClassDB::bind_method(D_METHOD("set_flags", "flags"), &TextLine::set_flags); ClassDB::bind_method(D_METHOD("get_flags"), &TextLine::get_flags); - ADD_PROPERTY(PropertyInfo(Variant::INT, "flags", PROPERTY_HINT_FLAGS, "Kashida justification,Word justification,Trim edge spaces after justification,Justification only after last tab"), "set_flags", "get_flags"); + ADD_PROPERTY(PropertyInfo(Variant::INT, "flags", PROPERTY_HINT_FLAGS, "Kashida Justify,Word Justify,Trim Edge Spaces After Justify,Justify Only After Last Tab"), "set_flags", "get_flags"); ClassDB::bind_method(D_METHOD("get_objects"), &TextLine::get_objects); ClassDB::bind_method(D_METHOD("get_object_rect", "key"), &TextLine::get_object_rect); |