Browse Source

increase minimum range in property editor a bit

Juan Linietsky 10 years ago
parent
commit
57380f9aba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/editor/property_editor.cpp

+ 1 - 1
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);