Merge pull request #110378 from timothyqiu/rtl-preview

Make text-related nodes translation domain aware
This commit is contained in:
Thaddeus Crews 2025-10-16 12:48:05 -05:00
commit 9e96c7d9b8
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
23 changed files with 132 additions and 101 deletions

View file

@ -488,7 +488,8 @@ void FoldableContainer::_shape() {
}
text_buf->set_horizontal_alignment(_get_actual_alignment());
text_buf->set_text_overrun_behavior(overrun_behavior);
text_buf->add_string(atr(title), font, font_size, language);
const String &lang = language.is_empty() ? _get_locale() : language;
text_buf->add_string(atr(title), font, font_size, lang);
}
HorizontalAlignment FoldableContainer::_get_actual_alignment() const {