fix how some display values are shown, fixes #4953
(cherry picked from commit 1555608276
)
This commit is contained in:
parent
cb37d1bb91
commit
2212cc827c
|
@ -1146,7 +1146,8 @@ int Tree::draw_item(const Point2i& p_pos,const Point2& p_draw_ofs, const Size2&
|
||||||
|
|
||||||
Ref<Texture> updown = cache.updown;
|
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());
|
font->draw( ci, text_pos, valtext, col, item_rect.size.x-updown->get_width());
|
||||||
|
|
||||||
if (!p_item->cells[i].editable)
|
if (!p_item->cells[i].editable)
|
||||||
|
|
Loading…
Reference in New Issue