diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-11 12:38:36 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-11 12:38:36 +0200 |
commit | 1c50f539c378b21aa3c1888fa22d3628ac8e396f (patch) | |
tree | 2314925c462a0c609ffe2eae5348def6aecb33aa | |
parent | eacfdc784f1e3d70a35140f5d8f1261d008dbc45 (diff) | |
parent | fe1bf76e6f727a136e89232ff59015e580eadb74 (diff) | |
download | redot-engine-1c50f539c378b21aa3c1888fa22d3628ac8e396f.tar.gz |
Merge pull request #91820 from timothyqiu/long-category
Fix long category name display in Inspector
-rw-r--r-- | editor/editor_inspector.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index 9599479c83..266901c938 100644 --- a/editor/editor_inspector.cpp +++ b/editor/editor_inspector.cpp @@ -1190,19 +1190,27 @@ void EditorInspectorCategory::_notification(int p_what) { if (icon.is_valid()) { w += hs + icon_size; } + w = MIN(w, get_size().width - sb->get_minimum_size().width); int ofs = (get_size().width - w) / 2; if (icon.is_valid()) { Size2 rect_size = Size2(icon_size, icon_size); Point2 rect_pos = Point2(ofs, (get_size().height - icon_size) / 2).floor(); + if (is_layout_rtl()) { + rect_pos.x = get_size().width - rect_pos.x - icon_size; + } draw_texture_rect(icon, Rect2(rect_pos, rect_size)); ofs += hs + icon_size; + w -= hs + icon_size; } Color color = get_theme_color(SNAME("font_color"), SNAME("Tree")); - draw_string(font, Point2(ofs, font->get_ascent(font_size) + (get_size().height - font->get_height(font_size)) / 2).floor(), label, HORIZONTAL_ALIGNMENT_LEFT, get_size().width, font_size, color); + if (is_layout_rtl()) { + ofs = get_size().width - ofs - w; + } + draw_string(font, Point2(ofs, font->get_ascent(font_size) + (get_size().height - font->get_height(font_size)) / 2).floor(), label, HORIZONTAL_ALIGNMENT_LEFT, w, font_size, color); } break; } } |