|
@@ -1179,8 +1179,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 = rtos( p_item->cells[i].val );
|
|
|
+ String valtext = String::num( p_item->cells[i].val, Math::step_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)
|
|
@@ -1746,7 +1746,7 @@ int Tree::propagate_mouse_event(const Point2i &p_pos,int x_ofs,int y_ofs,bool p_
|
|
|
|
|
|
} else {
|
|
|
|
|
|
- editor_text=String::num( p_item->cells[col].val, Math::decimals( p_item->cells[col].step ) );
|
|
|
+ editor_text=String::num( p_item->cells[col].val, Math::step_decimals( p_item->cells[col].step ) );
|
|
|
if (select_mode==SELECT_MULTI && get_tree()->get_last_event_id() == focus_in_id)
|
|
|
bring_up_editor=false;
|
|
|
|
|
@@ -2521,7 +2521,7 @@ bool Tree::edit_selected() {
|
|
|
text_editor->set_pos( textedpos );
|
|
|
text_editor->set_size( rect.size);
|
|
|
text_editor->clear();
|
|
|
- text_editor->set_text( c.mode==TreeItem::CELL_MODE_STRING?c.text:rtos(c.val) );
|
|
|
+ text_editor->set_text( c.mode==TreeItem::CELL_MODE_STRING?c.text:String::num( c.val, Math::step_decimals( c.step ) ) );
|
|
|
text_editor->select_all();
|
|
|
|
|
|
if (c.mode==TreeItem::CELL_MODE_RANGE || c.mode==TreeItem::CELL_MODE_RANGE_EXPRESSION ) {
|