diff options
| author | Adam Chyb <achybby@gmail.com> | 2023-10-26 23:47:45 +1100 |
|---|---|---|
| committer | Adam Chyb <achybby@gmail.com> | 2023-10-27 00:30:48 +1100 |
| commit | 1785978872353b6295f65b4987e950c1ef44a456 (patch) | |
| tree | 038d714c643d334f97ac359ddefac8d1be7749d1 | |
| parent | 46cb7f94f755d452b146aca52c36e3d3523ad807 (diff) | |
| download | redot-engine-1785978872353b6295f65b4987e950c1ef44a456.tar.gz | |
Fix TreeItem truncating node names too much when using a custom icon
Fixes #83801.
| -rw-r--r-- | scene/gui/tree.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/tree.cpp b/scene/gui/tree.cpp index 2d3166270b..a4c239cf53 100644 --- a/scene/gui/tree.cpp +++ b/scene/gui/tree.cpp @@ -2050,7 +2050,7 @@ int Tree::draw_item(const Point2i &p_pos, const Point2 &p_draw_ofs, const Size2 int text_width = item_width - theme_cache.inner_item_margin_left - theme_cache.inner_item_margin_right; if (p_item->cells[i].icon.is_valid()) { - text_width -= p_item->cells[i].get_icon_size().x + theme_cache.h_separation; + text_width -= _get_cell_icon_size(p_item->cells[i]).x + theme_cache.h_separation; } p_item->cells.write[i].text_buf->set_width(text_width); |
