summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-10-27 11:38:32 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-10-27 11:38:32 +0200
commit924d861f6c4ae811186db86fc78c9fc065693ee4 (patch)
tree0282733bc0e7379178269a1969b665855f159cf8
parentc05341e0480e74c1d1b5a6dcf0e19626cf231ff0 (diff)
parent1785978872353b6295f65b4987e950c1ef44a456 (diff)
downloadredot-engine-924d861f6c4ae811186db86fc78c9fc065693ee4.tar.gz
Merge pull request #84001 from chybby/83801-truncate-custom-icons
Fix TreeItem truncating node names too much when using a custom icon
-rw-r--r--scene/gui/tree.cpp2
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);