diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-03-10 09:53:22 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-03-10 09:53:22 -0300 |
commit | 57380f9aba2352755273acb9dcd5f20351e668ce (patch) | |
tree | 5e50d016b720ecd3e74aeba9e80a24b992a9d33d /tools/editor | |
parent | 91744e9ed3124ca48e0837ee72bfe7182fd31701 (diff) |
increase minimum range in property editor a bit
Diffstat (limited to 'tools/editor')
-rw-r--r-- | tools/editor/property_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |