From ed68f867fb87485f8b92b19206b7b9efc90e452d Mon Sep 17 00:00:00 2001 From: MinusKube Date: Wed, 6 Jul 2022 17:36:30 +0200 Subject: Fix range slider in tree not updating text value --- scene/gui/tree.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'scene/gui') diff --git a/scene/gui/tree.cpp b/scene/gui/tree.cpp index d3e7540790..f53e98fb28 100644 --- a/scene/gui/tree.cpp +++ b/scene/gui/tree.cpp @@ -2850,6 +2850,9 @@ void Tree::value_editor_changed(double p_value) { TreeItem::Cell &c = popup_edited_item->cells.write[popup_edited_item_col]; c.val = p_value; + + text_editor->set_text(String::num(c.val, Math::range_step_decimals(c.step))); + item_edited(popup_edited_item_col, popup_edited_item); update(); } -- cgit v1.2.3