From 57380f9aba2352755273acb9dcd5f20351e668ce Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Tue, 10 Mar 2015 09:53:22 -0300 Subject: increase minimum range in property editor a bit --- tools/editor/property_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/editor') diff --git a/tools/editor/property_editor.cpp b/tools/editor/property_editor.cpp index fb4c134263..f760ab1cb5 100644 --- a/tools/editor/property_editor.cpp +++ b/tools/editor/property_editor.cpp @@ -2362,7 +2362,7 @@ void PropertyEditor::update_tree() { } else { if (p.type == Variant::REAL) { - item->set_range_config(1, -65536, 65535, 0.01); + item->set_range_config(1, -65536, 65535, 0.001); } else { item->set_range_config(1, -65536, 65535, 1); -- cgit v1.2.3