diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-10-09 19:41:03 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-10-10 12:49:24 +0300 |
commit | 309712551c97225272599c8f5f8ee84b72b5ef30 (patch) | |
tree | 067b0f0e6ecce4b4001c0a05546beec13d70d391 /scene/gui | |
parent | 4c4e67334412f73c9deba5e5d29afa8651418af2 (diff) | |
download | redot-engine-309712551c97225272599c8f5f8ee84b72b5ef30.tar.gz |
[TextParagraph/Button] Add support for line spacing.
Diffstat (limited to 'scene/gui')
-rw-r--r-- | scene/gui/button.cpp | 2 | ||||
-rw-r--r-- | scene/gui/button.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/scene/gui/button.cpp b/scene/gui/button.cpp index 0a5f2ec6c7..507e1f5068 100644 --- a/scene/gui/button.cpp +++ b/scene/gui/button.cpp @@ -568,6 +568,7 @@ void Button::_shape(Ref<TextParagraph> p_paragraph, String p_text) { } autowrap_flags = autowrap_flags | TextServer::BREAK_TRIM_EDGE_SPACES; p_paragraph->set_break_flags(autowrap_flags); + p_paragraph->set_line_spacing(theme_cache.line_spacing); if (text_direction == Control::TEXT_DIRECTION_INHERITED) { p_paragraph->set_direction(is_layout_rtl() ? TextServer::DIRECTION_RTL : TextServer::DIRECTION_LTR); @@ -840,6 +841,7 @@ void Button::_bind_methods() { BIND_THEME_ITEM(Theme::DATA_TYPE_CONSTANT, Button, icon_max_width); BIND_THEME_ITEM(Theme::DATA_TYPE_CONSTANT, Button, align_to_largest_stylebox); + BIND_THEME_ITEM(Theme::DATA_TYPE_CONSTANT, Button, line_spacing); } Button::Button(const String &p_text) { diff --git a/scene/gui/button.h b/scene/gui/button.h index 5f4429bc1d..e8e68f49bb 100644 --- a/scene/gui/button.h +++ b/scene/gui/button.h @@ -100,6 +100,7 @@ private: int h_separation = 0; int icon_max_width = 0; + int line_spacing = 0; } theme_cache; void _shape(Ref<TextParagraph> p_paragraph = Ref<TextParagraph>(), String p_text = ""); |