You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-05 19:31:35 +00:00
fix how some display values are shown, fixes #4953
This commit is contained in:
@@ -1186,7 +1186,8 @@ int Tree::draw_item(const Point2i& p_pos,const Point2& p_draw_ofs, const Size2&
|
||||
|
||||
Ref<Texture> updown = cache.updown;
|
||||
|
||||
String valtext = String::num( p_item->cells[i].val, Math::decimals( p_item->cells[i].step ) );
|
||||
//String valtext = String::num( p_item->cells[i].val, Math::decimals( p_item->cells[i].step ) );
|
||||
String valtext = rtos( p_item->cells[i].val );
|
||||
font->draw( ci, text_pos, valtext, col, item_rect.size.x-updown->get_width());
|
||||
|
||||
if (!p_item->cells[i].editable)
|
||||
|
||||
Reference in New Issue
Block a user