diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-05-22 04:30:58 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-05-25 02:50:35 +0200 |
commit | 87f503310ba4f34ffa29f190d803d996ca682612 (patch) | |
tree | d0f05355b72c4c077f48f274cd083e600a3e57af /scene/resources/text_paragraph.cpp | |
parent | 3b3a55ca04331e85cc24ac315b60e7ad4aeb17df (diff) | |
download | redot-engine-87f503310ba4f34ffa29f190d803d996ca682612.tar.gz |
Tweak dozens of editor property hints for consistency
- Update Viewport MSAA property hints to match the currently
exposed values.
- Add some performance hints to property hints.
Diffstat (limited to 'scene/resources/text_paragraph.cpp')
-rw-r--r-- | scene/resources/text_paragraph.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/text_paragraph.cpp b/scene/resources/text_paragraph.cpp index 341f5abd80..958c94fe31 100644 --- a/scene/resources/text_paragraph.cpp +++ b/scene/resources/text_paragraph.cpp @@ -72,7 +72,7 @@ void TextParagraph::_bind_methods() { ClassDB::bind_method(D_METHOD("set_flags", "flags"), &TextParagraph::set_flags); ClassDB::bind_method(D_METHOD("get_flags"), &TextParagraph::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,Break mandatory,Break words,Break graphemes"), "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,Break Mandatory,Break Words,Break Graphemes"), "set_flags", "get_flags"); ClassDB::bind_method(D_METHOD("set_width", "width"), &TextParagraph::set_width); ClassDB::bind_method(D_METHOD("get_width"), &TextParagraph::get_width); |